]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_event.i
Allow for Cmd-click on wxMac
[wxWidgets.git] / wxPython / src / _event.i
index 0ebaae3facc248d4e914ef7c983a0d8d923bb361..dfeebbde88675d783c51d8ddad266bf5b7ad119e 100644 (file)
@@ -696,14 +696,16 @@ public:
     %pythoncode { KeyCode = GetKeyCode }
 
     %extend {
-        int GetUniChar() {
+        int GetUnicodeKey() {
         %#if wxUSE_UNICODE
-            return self->m_uniChar;
+            return self->GetUnicodeKey();
         %#else
             return 0;
         %#endif
         }
     }
+    %pythoncode { GetUniChar = GetUnicodeKey }
+    
     
     // get the raw key code (platform-dependent)
     wxUint32 GetRawKeyCode() const;