X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d289329218fb13e56c297fc27d82cb44cb849083..4c410aa14e7818b946351842fed2905239c15592:/src/palmos/window.cpp diff --git a/src/palmos/window.cpp b/src/palmos/window.cpp index 02a43e497a..fb7272487a 100644 --- a/src/palmos/window.cpp +++ b/src/palmos/window.cpp @@ -17,10 +17,6 @@ // headers // --------------------------------------------------------------------------- -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma implementation "window.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -31,7 +27,6 @@ #ifndef WX_PRECOMP #include "wx/window.h" #include "wx/accel.h" - #include "wx/setup.h" #include "wx/menu.h" #include "wx/dc.h" #include "wx/dcclient.h" @@ -85,6 +80,8 @@ #include "wx/listctrl.h" #include "wx/window.h" +#include + // --------------------------------------------------------------------------- // global variables // --------------------------------------------------------------------------- @@ -272,13 +269,13 @@ bool wxWindowPalm::Create(wxWindow *parent, return true; } -FormType *wxWindowPalm::GetFormPtr() +WXFORMPTR wxWindowPalm::GetFormPtr() { return FrameForm; } -void wxWindowPalm::SetFormPtr(FormType *FormPtr) +void wxWindowPalm::SetFormPtr(WXFORMPTR FormPtr) { - FrameForm=FormPtr; + FrameForm = FormPtr; } // --------------------------------------------------------------------------- @@ -319,11 +316,11 @@ void wxWindowPalm::Lower() { } -void wxWindowPalm::SetTitle( const wxString& title) +void wxWindowPalm::SetLabel( const wxString& WXUNUSED(label)) { } -wxString wxWindowPalm::GetTitle() const +wxString wxWindowPalm::GetLabel() const { return wxEmptyString; } @@ -442,7 +439,7 @@ void wxWindowPalm::Thaw() void wxWindowPalm::Refresh(bool eraseBack, const wxRect *rect) { - WinHandle handle = GetWinHandle(); + WinHandle handle = (WinHandle)GetWinHandle(); if(handle) { if(rect) @@ -753,5 +750,3 @@ bool wxWindowPalm::UnregisterHotKey(int hotkeyId) } #endif // wxUSE_HOTKEY - -