]> git.saurik.com Git - wxWidgets.git/commitdiff
better learn the operators...
authorVáclav Slavík <vslavik@fastmail.fm>
Sun, 23 Sep 2001 22:38:25 +0000 (22:38 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sun, 23 Sep 2001 22:38:25 +0000 (22:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11682 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mgl/toplevel.cpp

index 4a098e2a7e1bd71a863fb6e9a751edd45c508ab1..a026f42f92837a0394a521d21603273efab8fd20 100644 (file)
@@ -33,8 +33,6 @@
 // idle system
 // ----------------------------------------------------------------------------
 
-extern void wxapp_install_idle_handler();
-extern bool g_isIdle;
 extern int g_openDialogs;
 
 // ----------------------------------------------------------------------------
@@ -45,12 +43,6 @@ extern int g_openDialogs;
     IMPLEMENT_DYNAMIC_CLASS(wxTopLevelWindow, wxWindow)
 #endif
 
-// ----------------------------------------------------------------------------
-// data
-// ----------------------------------------------------------------------------
-
-extern wxList wxPendingDelete;
-
 
 // ============================================================================
 // implementation
@@ -124,7 +116,7 @@ bool wxTopLevelWindowMGL::ShowFullScreen(bool show, long style)
         GetSize(&m_fsSaveFrame.width, &m_fsSaveFrame.height);
 
         if ( style & wxFULLSCREEN_NOCAPTION )
-            m_windowStyle &= !wxCAPTION;
+            m_windowStyle &= ~wxCAPTION;
         if ( style & wxFULLSCREEN_NOBORDER )
             m_windowStyle = wxSIMPLE_BORDER;