]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/palmos/window.h
fixed wxGTK1 compilation after wxDC changes (still doesn't work)
[wxWidgets.git] / include / wx / palmos / window.h
index 81cddb3611193ca4f1bdaddad36e8d82f200b493..aeb2a5f9a96520a3aab37c1bb82e15b92d6f385e 100644 (file)
@@ -132,8 +132,9 @@ public:
     // simple accessors
     // ----------------
 
-    virtual WXWINHANDLE GetWinHandle() const { return m_handle; }
-    virtual WXWidget GetHandle() const { return GetWinHandle(); }
+    WXHWND GetHWND() const { return m_hWnd; }
+    void SetHWND(WXHWND hWnd) { m_hWnd = hWnd; }
+    virtual WXWidget GetHandle() const { return GetHWND(); }
 
     // event handlers
     // --------------
@@ -208,7 +209,7 @@ public:
 
 protected:
     // the window handle
-    WXWINHANDLE m_handle;
+    WXHWND                m_hWnd;
     WXFORMPTR FrameForm;
 
     WXFORMPTR GetFormPtr();