[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - vcl/unx
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Thu Jan 2 10:13:45 UTC 2020
vcl/unx/gtk3/gtk3gtkinst.cxx | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
New commits:
commit bb69e410c48e68be127a3842740d588e8a537395
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Dec 19 09:33:31 2019 +0000
Commit: Adolfo Jayme Barrientos <fitojb at ubuntu.com>
CommitDate: Thu Jan 2 11:13:09 2020 +0100
focus-in/out should return a value
Change-Id: I82df9b24a5f08830eda1e511d6a7d45a1edcc08e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/85499
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos <fitojb at ubuntu.com>
diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index e0bbf6dd4cdc..9d992eb81c4f 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -9249,10 +9249,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()
@@ -9260,10 +9261,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