]> git.saurik.com Git - wxWidgets.git/commitdiff
no changes, just remove comments which don't make sense any more
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 1 Sep 2006 21:46:37 +0000 (21:46 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 1 Sep 2006 21:46:37 +0000 (21:46 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40952 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/window.cpp

index d9e6c899514141d04962a52330b991404db253a6..6c0001767877f78ccd2f8b54f052d6d85a1c4981 100644 (file)
@@ -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();