summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-12-19 09:33:31 +0000
committerCaolán McNamara <caolanm@redhat.com>2019-12-19 12:40:24 +0100
commit0c3a2eeb8310dc30b4d34f45f4d141fe9ecdcf68 (patch)
treeed530979b802ece06c0f2aca7b747766e3f65c76 /vcl
parent20d91d5f45f3d1429dd64ad27469368f36f5fe5e (diff)
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@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/unx/gtk3/gtk3gtkinst.cxx6
1 files changed, 4 insertions, 2 deletions
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()