///////////////////////////////////////////////////////////////////////////////
// Name: src/msw/uxtheme.cpp
// Purpose: implements wxUxThemeEngine class: support for XP themes
-// Author:
+// Author:
// Modified by:
// Created: 2003
// RCS-ID: $Id$
// Copyright: (c) 2003 wxWidgets Dev-Team
-// License: wxWidgets licence
+// License: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
// ============================================================================
class wxUxThemeModule : public wxModule
{
public:
- virtual bool OnInit() { return true; }
- virtual void OnExit()
- {
- if ( wxUxThemeEngine::ms_themeEngine )
- {
+ virtual bool OnInit() { return true; }
+ virtual void OnExit()
+ {
+ if ( wxUxThemeEngine::ms_themeEngine )
+ {
// this is probably not necessary right now but try to be careful
// and avoid the problems which we might have if someone ever
// decides to show a message box using the theme engine from
wxUxThemeEngine::ms_themeEngine = NULL;
wxUxThemeEngine::ms_isThemeEngineAvailable = false;
- delete themeEngine;
- }
- }
+ delete themeEngine;
+ }
+ }
- DECLARE_DYNAMIC_CLASS(wxUxThemeModule)
+ DECLARE_DYNAMIC_CLASS(wxUxThemeModule)
};
IMPLEMENT_DYNAMIC_CLASS(wxUxThemeModule, wxModule)
// themes
return false;
}
-
+
// we're prepared to handle the errors
wxLogNull noLog;