diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-05-22 16:30:50 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-05-22 16:31:12 +0100 |
commit | 17ee476e21fd07a82744d667ae2d5aa86fb390df (patch) | |
tree | cc56d4515a8d31ae8d9c6818bbb7365ee20c81be /vcl | |
parent | a4bf46accfc73f6993c1d29b84d586a91d21c2c8 (diff) |
gtk3: call gtk_window_set_accept_focus
Change-Id: I4f30f05e81e1d5539e832fda144a9fafecdce8e2
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/gtk/window/gtksalframe.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/unx/gtk/window/gtksalframe.cxx b/vcl/unx/gtk/window/gtksalframe.cxx index 42f97266d65d..3286267b8686 100644 --- a/vcl/unx/gtk/window/gtksalframe.cxx +++ b/vcl/unx/gtk/window/gtksalframe.cxx @@ -1218,8 +1218,8 @@ static void lcl_set_accept_focus( GtkWindow* pWindow, gboolean bAccept, bool bBe } } #else - (void)pWindow; (void)bAccept; (void)bBeforeRealize; - //FIXME: No set_accept_focus impl + gtk_window_set_accept_focus(pWindow, bAccept); + (void)bBeforeRealize; #endif } |