From fe282c0878bcb08efa406689986a1c8135a2cdd7 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 1 Sep 2006 21:46:37 +0000 Subject: [PATCH] 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 --- src/gtk/window.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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(); -- 2.45.2