Main change is that we now close X11 display on program exit: as this couldn't

be done in wxApp dtor (too early), a special module had to be created for it
and module dependencies added for the other modules which have to be cleaned
up while the display is still open.

Also a few minor formatting changes and removed a couple of unused variables
from wxApp.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42119 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-10-19 14:39:53 +00:00
parent 36751d973e
commit b886fae648
6 changed files with 117 additions and 119 deletions

View File

@@ -1694,8 +1694,14 @@ int wxNoOptimize::ms_count = 0;
class wxWinModule : public wxModule
{
public:
bool OnInit();
void OnExit();
wxWinModule()
{
// we must be cleaned up before the display is closed
AddDependency(wxClassInfo::FindClass(_T("wxX11DisplayModule")));
}
virtual bool OnInit();
virtual void OnExit();
private:
DECLARE_DYNAMIC_CLASS(wxWinModule)