projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a6418d5
)
gtk/win32: fix a switch-default warning
author
Marc-André Lureau
<marcandre.lureau@redhat.com>
Tue, 23 Aug 2022 12:42:15 +0000
(16:42 +0400)
committer
Marc-André Lureau
<marcandre.lureau@redhat.com>
Tue, 23 Aug 2022 12:42:17 +0000
(16:42 +0400)
gtk/gtkimcontextime.c:714:3: warning: switch missing default case [-Wswitch-default]
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
gtk/gtkimcontextime.c
patch
|
blob
|
history
diff --git
a/gtk/gtkimcontextime.c
b/gtk/gtkimcontextime.c
index 91eb726a24de6b8387fb29793c1d106be9a6dba6..e341925733b8384886cdff3209ee3222fdf9b51f 100644
(file)
--- a/
gtk/gtkimcontextime.c
+++ b/
gtk/gtkimcontextime.c
@@
-741,6
+741,9
@@
gtk_im_context_ime_focus_out (GtkIMContext *context)
case GTK_WIN32_IME_FOCUS_BEHAVIOR_FOLLOW:
break;
+
+ default:
+ g_assert_not_reached ();
}
/* remove event filter */