X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8d94819c437fdf28c45e9f328e6c38fd1c639ddf..c118fa5f2035b48f059de0353950bceedc5a10d4:/src/dfb/window.cpp diff --git a/src/dfb/window.cpp b/src/dfb/window.cpp index bfe64b16f0..9caa5b23c2 100644 --- a/src/dfb/window.cpp +++ b/src/dfb/window.cpp @@ -2,7 +2,7 @@ // Name: src/dfb/window.cpp // Purpose: wxWindow // Author: Vaclav Slavik -// (based on GTK, MSW, MGL implementations) +// (based on GTK, MSW implementations) // Created: 2006-80-10 // RCS-ID: $Id$ // Copyright: (c) 2006 REA Elektronik GmbH @@ -323,7 +323,7 @@ bool wxWindowDFB::SetCursor(const wxCursor& cursor) #warning "implement this" #if 0 - if ( m_cursor.Ok() ) + if ( m_cursor.IsOk() ) DFB_wmSetWindowCursor(m_wnd, *m_cursor.GetDFBCursor()); else DFB_wmSetWindowCursor(m_wnd, *wxSTANDARD_CURSOR->GetDFBCursor()); @@ -1054,17 +1054,6 @@ void wxWindowDFB::HandleKeyEvent(const wxDFBWindowEvent& event_) } } -// --------------------------------------------------------------------------- -// idle events processing -// --------------------------------------------------------------------------- - -void wxWindowDFB::OnInternalIdle() -{ - if (wxUpdateUIEvent::CanUpdate(this) && IsShown()) - UpdateWindowUI(wxUPDATE_UI_FROMIDLE); -} - - // Find the wxWindow at the current mouse position, returning the mouse // position. wxWindow* wxFindWindowAtPointer(wxPoint& pt)