]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/app.cpp
submenu preparation in two methods encapsulated
[wxWidgets.git] / src / mgl / app.cpp
index f4790cbc7aa48eceda830e187fd5d213eb25f766..82261a793878d065362ba8cb35836d4f43cf7eec 100644 (file)
@@ -3,7 +3,7 @@
 // Author:      Vaclav Slavik
 //              based on GTK and MSW implementations
 // Id:          $Id$
-// Copyright:   (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
+// Copyright:   (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -410,7 +410,10 @@ void wxApp::DeletePendingObjects()
 bool wxApp::Initialize()
 {
     if ( MGL_init(".", NULL) == 0 )
+    {
+        wxLogError(_("Cannot initialize SciTech MGL!"));
         return FALSE;
+    }
 
     wxClassInfo::InitializeClasses();
 
@@ -444,11 +447,6 @@ bool wxApp::Initialize()
     return TRUE;
 }
 
-wxIcon wxApp::GetStdIcon(int which) const
-{
-    return wxTheme::Get()->GetRenderer()->GetStdIcon(which);
-}
-
 void wxApp::CleanUp()
 {
 #if wxUSE_LOG