[Libreoffice-commits] core.git: vcl/unx

Tor Lillqvist tml at collabora.com
Fri Feb 28 02:53:26 PST 2014


 vcl/unx/gtk/window/gtksalframe.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7c50556cd88e54726d03479ea852d2ea07497868
Author: Tor Lillqvist <tml at collabora.com>
Date:   Fri Feb 28 12:52:44 2014 +0200

    WaE: implicit conversion (IntegralCast) from bool to 'int'
    
    Change-Id: I8094180c898c89351caa4805e395c3f3f2b0a946

diff --git a/vcl/unx/gtk/window/gtksalframe.cxx b/vcl/unx/gtk/window/gtksalframe.cxx
index 7f7aeb5..9f32854 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 );
         }


More information about the Libreoffice-commits mailing list