From 0f20644152decd645ce5c17cb38813ca9f05bc04 Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Wed, 23 Apr 2003 06:37:05 +0000 Subject: [PATCH] Typo in mouse event code. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20315 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/window.cpp | 12 ++++++------ src/gtk1/window.cpp | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/gtk/window.cpp b/src/gtk/window.cpp index fbf3e2708e..aa688a9047 100644 --- a/src/gtk/window.cpp +++ b/src/gtk/window.cpp @@ -1831,7 +1831,7 @@ static gint gtk_window_motion_notify_callback( GtkWidget *widget, wxMouseEvent event( wxEVT_MOTION ); InitMouseEvent(win, event, gdk_event); - if ( g_captureWindow ) + if ( !g_captureWindow ) { // synthetize a mouse enter or leave event if needed GdkWindow *winUnderMouse = gdk_window_at_pointer(NULL, NULL); @@ -3110,11 +3110,11 @@ void wxWindowGTK::OnInternalIdle() if (cursor.Ok()) { - /* I now set the cursor anew in every OnInternalIdle call - as setting the cursor in a parent window also effects the - windows above so that checking for the current cursor is - not possible. */ - + // We now set the cursor anew in every OnInternalIdle call + // as setting the cursor in a parent window also effects the + // windows above so that checking for the current cursor is + // not possible. + if (m_wxwindow) { GdkWindow *window = GTK_PIZZA(m_wxwindow)->bin_window; diff --git a/src/gtk1/window.cpp b/src/gtk1/window.cpp index fbf3e2708e..aa688a9047 100644 --- a/src/gtk1/window.cpp +++ b/src/gtk1/window.cpp @@ -1831,7 +1831,7 @@ static gint gtk_window_motion_notify_callback( GtkWidget *widget, wxMouseEvent event( wxEVT_MOTION ); InitMouseEvent(win, event, gdk_event); - if ( g_captureWindow ) + if ( !g_captureWindow ) { // synthetize a mouse enter or leave event if needed GdkWindow *winUnderMouse = gdk_window_at_pointer(NULL, NULL); @@ -3110,11 +3110,11 @@ void wxWindowGTK::OnInternalIdle() if (cursor.Ok()) { - /* I now set the cursor anew in every OnInternalIdle call - as setting the cursor in a parent window also effects the - windows above so that checking for the current cursor is - not possible. */ - + // We now set the cursor anew in every OnInternalIdle call + // as setting the cursor in a parent window also effects the + // windows above so that checking for the current cursor is + // not possible. + if (m_wxwindow) { GdkWindow *window = GTK_PIZZA(m_wxwindow)->bin_window;