[Xfce4-commits] [apps/xfce4-taskmanager] 01/01: Fix clang warning by grouping conditions (bug 14402)

noreply at xfce.org noreply at xfce.org
Sat May 26 22:52:53 CEST 2018


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

l   a   n   d   r   y       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       m   a   s   t   e   r   
   in repository apps/xfce4-taskmanager.

commit c408ee48db100b51500d2d8264c7b77066d600d9
Author: rim <rozhuk.im at gmail.com>
Date:   Sat May 26 22:52:37 2018 +0200

    Fix clang warning by grouping conditions (bug 14402)
---
 src/process-window.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/process-window.c b/src/process-window.c
index aa9ff67..f54e9fc 100644
--- a/src/process-window.c
+++ b/src/process-window.c
@@ -397,7 +397,7 @@ xtm_process_window_key_pressed (XtmProcessWindow *window, GdkEventKey *event)
 		emit_delete_event_signal (window, (GdkEvent*) event);
 		ret = TRUE;
 	}
-	else if (event->keyval == GDK_KEY_f && event->state & GDK_CONTROL_MASK) {
+	else if (event->keyval == GDK_KEY_f && (event->state & GDK_CONTROL_MASK)) {
 		gtk_widget_grab_focus (GTK_WIDGET(window->filter_entry));
 		ret = TRUE;
 	}

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list