X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/47a8a4d5cc3e8fcb2efee4787cb9d244104beea5..10d302224e3555520f3e3c29d4dc7b7a9654b295:/include/wx/palmos/window.h diff --git a/include/wx/palmos/window.h b/include/wx/palmos/window.h index 81cddb3611..aeb2a5f9a9 100644 --- a/include/wx/palmos/window.h +++ b/include/wx/palmos/window.h @@ -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();