This is an automated email from the git hooks/post-receive script.

f2404 pushed a 
commit to branch 
master
in repository apps/xfce4-terminal.

commit 72e08125afa45d77db3e027e756f6e7a994066b5
Author: Igor <[email protected]>
Date:   Mon Mar 19 09:31:57 2018 -0400

    Suppress gdk_keyboard_(un)grab deprecation warnings
---
 terminal/terminal-window-dropdown.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/terminal/terminal-window-dropdown.c 
b/terminal/terminal-window-dropdown.c
index 2e6391c..c9912bc 100644
--- a/terminal/terminal-window-dropdown.c
+++ b/terminal/terminal-window-dropdown.c
@@ -579,12 +579,16 @@ static gboolean
 terminal_window_dropdown_can_grab (gpointer data)
 {
   GdkWindow    *window = gtk_widget_get_window (GTK_WIDGET (data));
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
   GdkGrabStatus status = gdk_keyboard_grab (window, FALSE, GDK_CURRENT_TIME);
+G_GNUC_END_IGNORE_DEPRECATIONS
 
   if (status == GDK_GRAB_SUCCESS)
     {
       /* drop the grab */
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
       gdk_keyboard_ungrab (GDK_CURRENT_TIME);
+G_GNUC_END_IGNORE_DEPRECATIONS
       return FALSE;
     }
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
Xfce4-commits mailing list
[email protected]
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to