From 038072e2f1eaf2bf32d748a71234d767ebba8919 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sun, 23 Sep 2001 22:38:25 +0000 Subject: [PATCH] better learn the operators... git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11682 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mgl/toplevel.cpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/mgl/toplevel.cpp b/src/mgl/toplevel.cpp index 4a098e2a7e..a026f42f92 100644 --- a/src/mgl/toplevel.cpp +++ b/src/mgl/toplevel.cpp @@ -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; -- 2.50.0