]> git.saurik.com Git - wxWidgets.git/commitdiff
Allow EVT_CHAR events in a wxGTK2 build for F-keys, and other
authorRobin Dunn <robin@alldunn.com>
Tue, 8 Feb 2005 16:23:27 +0000 (16:23 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 8 Feb 2005 16:23:27 +0000 (16:23 +0000)
non-alphanumeric keys.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31861 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/window.cpp
src/gtk1/window.cpp

index 6b8510a2e4a9819945ae489ef08ca01e4591e98a..ddd4ba38f368b22b9742a0aaa386b828391dd9ec 100644 (file)
@@ -1217,6 +1217,8 @@ static gint gtk_window_key_press_callback( GtkWidget *widget,
         return true;
     }
     
+#endif  // #ifndef  __WXGTK20__
+
     // Only send wxEVT_CHAR event if not processed yet. Thus, ALT-x
     // will only be sent if it is not in an accelerator table.
     if (!ret)
@@ -1262,7 +1264,7 @@ static gint gtk_window_key_press_callback( GtkWidget *widget,
             }
         }
     }
-#endif  // #ifndef  __WXGTK20__
+
 
 
 #if wxUSE_ACCEL
index 6b8510a2e4a9819945ae489ef08ca01e4591e98a..ddd4ba38f368b22b9742a0aaa386b828391dd9ec 100644 (file)
@@ -1217,6 +1217,8 @@ static gint gtk_window_key_press_callback( GtkWidget *widget,
         return true;
     }
     
+#endif  // #ifndef  __WXGTK20__
+
     // Only send wxEVT_CHAR event if not processed yet. Thus, ALT-x
     // will only be sent if it is not in an accelerator table.
     if (!ret)
@@ -1262,7 +1264,7 @@ static gint gtk_window_key_press_callback( GtkWidget *widget,
             }
         }
     }
-#endif  // #ifndef  __WXGTK20__
+
 
 
 #if wxUSE_ACCEL