]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/module.cpp
support mac on little endian systems
[wxWidgets.git] / src / common / module.cpp
index eee9507ee1e2513404289f35434282fcc7c08ce4..b5f5409cc6cbb1c7b0b3fdd0a5431dff67b64138 100644 (file)
@@ -69,8 +69,12 @@ bool wxModule::InitializeModules()
     wxModuleList::compatibility_iterator node;
     for ( node = m_modules.GetFirst(); node; node = node->GetNext() )
     {
-        if ( !node->GetData()->Init() )
+        wxModule *module = node->GetData();
+        if ( !module->Init() )
         {
+            wxLogError(_("Module \"%s\" initialization failed"),
+                       module->GetClassInfo()->GetClassName());
+
             // clean up already initialized modules - process in reverse order
             wxModuleList::compatibility_iterator n;
             for ( n = node->GetPrevious(); n; n = n->GetPrevious() )
@@ -78,11 +82,11 @@ bool wxModule::InitializeModules()
                 n->GetData()->OnExit();
             }
 
-            return FALSE;
+            return false;
         }
     }
 
-    return TRUE;
+    return true;
 }
 
 void wxModule::CleanUpModules()