]> git.saurik.com Git - wxWidgets.git/commitdiff
Added GetUnicodeKey
authorRobin Dunn <robin@alldunn.com>
Mon, 28 Jun 2004 19:27:06 +0000 (19:27 +0000)
committerRobin Dunn <robin@alldunn.com>
Mon, 28 Jun 2004 19:27:06 +0000 (19:27 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28059 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

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;