Commit f8527b83 authored by Gildas Bazin's avatar Gildas Bazin

* src/libvlc.c: reload the main module in case the user asks for the
   translation to be disabled. That way, the translation will even be
   disabled in the preferences panel.
parent cb6776c1
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* libvlc.c: main libvlc source * libvlc.c: main libvlc source
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2002 VideoLAN * Copyright (C) 1998-2002 VideoLAN
* $Id: libvlc.c,v 1.73 2003/04/06 14:12:46 massiot Exp $ * $Id: libvlc.c,v 1.74 2003/04/07 13:01:39 gbazin Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
...@@ -332,6 +332,9 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] ) ...@@ -332,6 +332,9 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
&& ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) ) && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
textdomain( "dummy" ); textdomain( "dummy" );
#endif #endif
module_EndBank( p_vlc );
module_InitBank( &libvlc );
module_LoadMain( &libvlc );
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment