From 7c50556cd88e54726d03479ea852d2ea07497868 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Fri, 28 Feb 2014 12:52:44 +0200 Subject: WaE: implicit conversion (IntegralCast) from bool to 'int' Change-Id: I8094180c898c89351caa4805e395c3f3f2b0a946 --- vcl/unx/gtk/window/gtksalframe.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vcl') diff --git a/vcl/unx/gtk/window/gtksalframe.cxx b/vcl/unx/gtk/window/gtksalframe.cxx index 7f7aeb5aec18..9f32854b8caf 100644 --- a/vcl/unx/gtk/window/gtksalframe.cxx +++ b/vcl/unx/gtk/window/gtksalframe.cxx @@ -3155,7 +3155,7 @@ bool GtkSalFrame::Dispatch( const XEvent* pEvent ) GdkEventFocus aEvent; aEvent.type = GDK_FOCUS_CHANGE; aEvent.window = widget_get_window( m_pWindow ); - aEvent.send_event = true; + aEvent.send_event = 1; aEvent.in = gint16(pEvent->xclient.data.l[1] == 1); signalFocus( m_pWindow, &aEvent, this ); } -- cgit