+// ----------------------------------------------------------------------------
+// Cleanup
+// ----------------------------------------------------------------------------
+
+class wxArtGtkModule: public wxModule
+{
+public:
+ bool OnInit() { return true; }
+ void OnExit()
+ {
+ if (gs_gtkStyle)
+ {
+ g_object_unref(G_OBJECT(gs_gtkStyle));
+ gs_gtkStyle = NULL;
+ }
+ }
+
+ DECLARE_DYNAMIC_CLASS(wxArtGtkModule)
+};
+
+IMPLEMENT_DYNAMIC_CLASS(wxArtGtkModule, wxModule)
+