]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/app.cpp
more fixes to keypress handling in wxGTK:
[wxWidgets.git] / src / x11 / app.cpp
index 1c924a182280b08fd8c078c270ea27a6f0364f7b..db8aaf22c30e7274887f030fa0afa2228a8614fe 100644 (file)
@@ -173,7 +173,7 @@ bool wxApp::Initialize(int& argc, wxChar **argv)
         xdisplay = XOpenDisplay( displayName.ToAscii() );
     if (!xdisplay)
     {
-        wxLogError( _("wxWindows could not open display. Exiting.") );
+        wxLogError( _("wxWidgets could not open display. Exiting.") );
         return false;
     }
 
@@ -746,7 +746,9 @@ Window wxGetWindowParent(Window window)
 
     return (Window) 0;
 
-    Window parent, root = 0;
+#ifndef __VMS
+   // VMS chokes on unreacheable code
+   Window parent, root = 0;
 #if wxUSE_NANOX
     int noChildren = 0;
 #else
@@ -767,6 +769,7 @@ Window wxGetWindowParent(Window window)
         return parent;
     else
         return (Window) 0;
+#endif
 }
 
 void wxApp::Exit()