]> git.sesse.net Git - vlc/commitdiff
Disable update checker in Win32 until it's fixed
authorClément Stenac <zorglub@videolan.org>
Sun, 12 Mar 2006 09:12:38 +0000 (09:12 +0000)
committerClément Stenac <zorglub@videolan.org>
Sun, 12 Mar 2006 09:12:38 +0000 (09:12 +0000)
modules/gui/wxwidgets/interface.cpp

index 1237702c2750b617e4db6a4e8b37c98b7f7dbfd0..d3566690b991af32c4e467a82ffd9d8f35571756 100644 (file)
@@ -596,8 +596,10 @@ void Interface::CreateOurMenuBar()
     /* Create the "Help" menu */
     wxMenu *help_menu = new wxMenu;
     help_menu->Append( About_Event, wxU(_("About VLC media player")) );
+#ifndef WIN32
     help_menu->AppendSeparator();
     help_menu->Append( UpdateVLC_Event, wxU(_("Check for updates ...")) );
+#endif
 
     /* Append the freshly created menus to the menu bar... */
     wxMenuBar *menubar = new wxMenuBar();