[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - vcl/unx

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Thu Dec 19 11:41:03 UTC 2019


 vcl/unx/gtk3/gtk3gtkinst.cxx |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 0c3a2eeb8310dc30b4d34f45f4d141fe9ecdcf68
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Dec 19 09:33:31 2019 +0000
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Dec 19 12:40:24 2019 +0100

    focus-in/out should return a value
    
    Change-Id: I82df9b24a5f08830eda1e511d6a7d45a1edcc08e
    Reviewed-on: https://gerrit.libreoffice.org/85498
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index 33d844aeca7d..1f7c1617d936 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -11264,10 +11264,11 @@ private:
         }
     }
 
-    static void signalEntryFocusIn(GtkWidget*, GdkEvent*, gpointer widget)
+    static gboolean signalEntryFocusIn(GtkWidget*, GdkEvent*, gpointer widget)
     {
         GtkInstanceComboBox* pThis = static_cast<GtkInstanceComboBox*>(widget);
         pThis->signal_entry_focus_in();
+        return false;
     }
 
     void signal_entry_focus_in()
@@ -11275,10 +11276,11 @@ private:
         signal_focus_in();
     }
 
-    static void signalEntryFocusOut(GtkWidget*, GdkEvent*, gpointer widget)
+    static gboolean signalEntryFocusOut(GtkWidget*, GdkEvent*, gpointer widget)
     {
         GtkInstanceComboBox* pThis = static_cast<GtkInstanceComboBox*>(widget);
         pThis->signal_entry_focus_out();
+        return false;
     }
 
     void signal_entry_focus_out()


More information about the Libreoffice-commits mailing list