X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/46ae103b9f08fc4e447d16a6a92b03cf55ee3189..db60c20db8321d7fb0604e33fe7288ddb38c496e:/src/mgl/toplevel.cpp?ds=inline diff --git a/src/mgl/toplevel.cpp b/src/mgl/toplevel.cpp index 69bbdf584a..65a6371dbd 100644 --- a/src/mgl/toplevel.cpp +++ b/src/mgl/toplevel.cpp @@ -7,6 +7,13 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// +// For compilers that support precompilation, includes "wx.h". +#include "wx/wxprec.h" + +#ifdef __BORLANDC__ + #pragma hdrstop +#endif + // ============================================================================ // declarations // ============================================================================ @@ -15,16 +22,12 @@ // headers // ---------------------------------------------------------------------------- -// For compilers that support precompilation, includes "wx.h". -#include "wx/wxprec.h" +#include "wx/toplevel.h" -#ifdef __BORLANDC__ -#pragma hdrstop -#endif +#ifndef WX_PRECOMP + #include "wx/app.h" +#endif // WX_PRECOMP -#include "wx/defs.h" -#include "wx/toplevel.h" -#include "wx/app.h" #include "wx/mgl/private.h" // ---------------------------------------------------------------------------- @@ -115,8 +118,8 @@ wxTopLevelWindowMGL::~wxTopLevelWindowMGL() if (wxTheApp->GetTopWindow() == this) wxTheApp->SetTopWindow(NULL); - if ((wxTopLevelWindows.Number() == 0) && - (wxTheApp->GetExitOnFrameDelete())) + if (wxTopLevelWindows.IsEmpty() && + wxTheApp->GetExitOnFrameDelete()) { wxTheApp->ExitMainLoop(); }