From f7108f16cc2996120dd54f4641a28240a5cb0bb9 Mon Sep 17 00:00:00 2001 From: Mart Raudsepp Date: Wed, 15 Feb 2006 15:49:09 +0000 Subject: [PATCH] Use correct type for storing return value. gboolean instead of bool. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37604 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/window.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gtk/window.cpp b/src/gtk/window.cpp index 8cdad303eb..0138ad5c26 100644 --- a/src/gtk/window.cpp +++ b/src/gtk/window.cpp @@ -1867,7 +1867,7 @@ static gboolean gtk_window_focus_in_callback( GtkWidget *widget, } #endif // wxUSE_CARET - bool ret = FALSE; + gboolean ret = FALSE; // does the window itself think that it has the focus? if ( !win->m_hasFocus ) @@ -1930,7 +1930,7 @@ static gboolean gtk_window_focus_out_callback( GtkWidget *widget, } #endif // wxUSE_CARET - bool ret = FALSE; + gboolean ret = FALSE; // don't send the window a kill focus event if it thinks that it doesn't // have focus already -- 2.45.2