[Xfce4-commits] [apps/xfce4-taskmanager] 02/03: Fix clang warning by grouping conditions to actually catch ctrl-q (#14402)
noreply at xfce.org
noreply at xfce.org
Sat May 26 22:51:09 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 c1fd3a9d0868c55b560f11a30ec9203157aec8e7
Author: rim <rozhuk.im at gmail.com>
Date: Sat May 26 22:49:27 2018 +0200
Fix clang warning by grouping conditions to actually catch ctrl-q (#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 b325599..e79dfbf 100644
--- a/src/process-window.c
+++ b/src/process-window.c
@@ -395,7 +395,7 @@ xtm_process_window_key_pressed (XtmProcessWindow *window, GdkEventKey *event)
gboolean ret = FALSE;
if (event->keyval == GDK_KEY_Escape ||
- event->keyval == GDK_KEY_q && (event->state & GDK_CONTROL_MASK)) {
+ (event->keyval == GDK_KEY_q && (event->state & GDK_CONTROL_MASK))) {
emit_delete_event_signal (window, (GdkEvent*) event);
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