X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f4da9a943131e6654f05dbf0761e52593d30e5b5..3f20f7d8a388424e6f519a18019e070725d18503:/src/palmos/toplevel.cpp?ds=sidebyside diff --git a/src/palmos/toplevel.cpp b/src/palmos/toplevel.cpp index cc98629ee9..2863573c9e 100644 --- a/src/palmos/toplevel.cpp +++ b/src/palmos/toplevel.cpp @@ -24,9 +24,10 @@ #pragma hdrstop #endif +#include "wx/toplevel.h" + #ifndef WX_PRECOMP #include "wx/app.h" - #include "wx/toplevel.h" #include "wx/dialog.h" #include "wx/string.h" #include "wx/log.h" @@ -37,9 +38,9 @@ #include "wx/checkbox.h" #include "wx/radiobut.h" #include "wx/slider.h" + #include "wx/module.h" #endif //WX_PRECOMP -#include "wx/module.h" #include "wx/display.h" // controls for sending select event @@ -166,11 +167,14 @@ void wxTopLevelWindowPalm::DoShowWindow(int nShowCmd) bool wxTopLevelWindowPalm::Show(bool show) { + if (true != show) { + return true; + } FrmDrawForm((FormType *)FrameForm); wxPaintEvent event(m_windowId); event.SetEventObject(this); - GetEventHandler()->ProcessEvent(event); + HandleWindowEvent(event); return true; } @@ -233,10 +237,6 @@ wxString wxTopLevelWindowPalm::GetTitle() const return wxEmptyString; } -void wxTopLevelWindowPalm::SetIcon(const wxIcon& icon) -{ -} - void wxTopLevelWindowPalm::SetIcons(const wxIconBundle& icons) { } @@ -333,7 +333,7 @@ bool wxTopLevelWindowPalm::HandleSize(WXEVENTPTR event) palmEvent->data.winResized.newBounds.extent.y); wxSizeEvent eventWx(newSize,GetId()); eventWx.SetEventObject(this); - return GetEventHandler()->ProcessEvent(eventWx); + return HandleWindowEvent(eventWx); } void wxTopLevelWindowPalm::OnActivate(wxActivateEvent& event)