]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/utilsx11.cpp
harmless unused param warning fix
[wxWidgets.git] / src / unix / utilsx11.cpp
index 8f2f8eb8ad6e7ca90015f6d422c6e3222c1c23c2..8d400126c660603c0a30818813df572f6cd44387 100644 (file)
@@ -765,9 +765,11 @@ KeySym wxCharCodeWXToX(int id)
 bool wxGetKeyState(wxKeyCode key)
 {
 #if defined(__WXX11__)
-    Display *pDisplay = wxApp::GetDisplay();
+    Display *pDisplay = (Display*) wxApp::GetDisplay();
 #elif defined(__WXGTK__)
     Display *pDisplay = GDK_DISPLAY();
+#elif defined(__WXMOTIF__)
+    Display *pDisplay = (Display*) (wxTheApp ? wxTheApp->GetInitialDisplay() : NULL);
 #else
 #error  Add code to get the DISPLAY for this platform
 #endif