From: Vadim Zeitlin Date: Fri, 1 Sep 2006 21:46:37 +0000 (+0000) Subject: no changes, just remove comments which don't make sense any more X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fe282c0878bcb08efa406689986a1c8135a2cdd7 no changes, just remove comments which don't make sense any more git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40952 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/window.cpp b/src/gtk/window.cpp index d9e6c89951..6c00017678 100644 --- a/src/gtk/window.cpp +++ b/src/gtk/window.cpp @@ -1728,7 +1728,6 @@ gtk_window_motion_notify_callback( GtkWidget *widget, wxSetCursorEvent cevent( event.m_x, event.m_y ); if (win->GetEventHandler()->ProcessEvent( cevent )) { - // Rewrite cursor handling here (away from idle). win->SetCursor( cevent.GetCursor() ); } } @@ -1944,7 +1943,6 @@ gtk_window_enter_callback( GtkWidget *widget, wxSetCursorEvent cevent( event.m_x, event.m_y ); if (win->GetEventHandler()->ProcessEvent( cevent )) { - // Rewrite cursor handling here (away from idle). win->SetCursor( cevent.GetCursor() ); } } @@ -3534,7 +3532,7 @@ void wxWindowGTK::Lower() bool wxWindowGTK::SetCursor( const wxCursor &cursor ) { - if ( !wxWindowBase::SetCursor( cursor.Ok() ? cursor : *wxSTANDARD_CURSOR) ) + if ( !wxWindowBase::SetCursor(cursor.Ok() ? cursor : *wxSTANDARD_CURSOR) ) return false; GTKUpdateCursor();