X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/17808a759627b03c2acbe7333dd2386557e1b804..55410bb4f67febe1ca20654f078ea4fb9a6223ae:/src/dfb/window.cpp?ds=sidebyside diff --git a/src/dfb/window.cpp b/src/dfb/window.cpp index a4ad6529e6..855c6c006e 100644 --- a/src/dfb/window.cpp +++ b/src/dfb/window.cpp @@ -88,8 +88,6 @@ wxWindowDFB::~wxWindowDFB() { SendDestroyEvent(); - m_isBeingDeleted = true; - if ( gs_mouseCapture == this ) ReleaseMouse(); @@ -740,9 +738,7 @@ void wxWindowDFB::PaintOverlays(const wxRect& rect) for ( wxDfbOverlaysList::const_iterator i = m_overlays->begin(); i != m_overlays->end(); ++i ) { - // FIXME: the cast is necessary for STL build where the iterator - // (incorrectly) returns void* and not wxOverlayImpl* - wxOverlayImpl *overlay = (wxOverlayImpl*) *i; + const wxOverlayImpl * const overlay = *i; wxRect orectOrig(overlay->GetRect()); wxRect orect(orectOrig); @@ -997,7 +993,6 @@ void wxWindowDFB::HandleKeyEvent(const wxDFBWindowEvent& event_) event.SetTimestamp(wxDFB_EVENT_TIMESTAMP(e)); event.m_rawCode = e.key_code; event.m_keyCode = GetTranslatedKeyCode(e.key_id); - event.m_scanCode = 0; // not used by wx at all #if wxUSE_UNICODE event.m_uniChar = e.key_symbol; #endif