summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2019-05-21 07:18:50 +0200
committerBenjamin Otte <otte@redhat.com>2019-05-21 07:23:30 +0200
commitca2bffc06024d12b65995900f2b61de09051bd8e (patch)
tree328a43b6c51f1bb29d18488f362cc126b8b7d2b6
parentb36b9323fc9e86a41369f008b255607452bb0d44 (diff)
downloadgtk+-ca2bffc06024d12b65995900f2b61de09051bd8e.tar.gz
imcontextime: Add missing semicolon
I wonder how thoroughly this was tested... ;)
-rw-r--r--gtk/gtkimcontextime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkimcontextime.c b/gtk/gtkimcontextime.c
index ab972c90e6..1814e7b30b 100644
--- a/gtk/gtkimcontextime.c
+++ b/gtk/gtkimcontextime.c
@@ -879,7 +879,7 @@ gtk_im_context_ime_set_preedit_font (GtkIMContext *context)
widget = gtk_root_get_for_surface (context_ime->client_surface);
if (!widget)
- return
+ return;
hwnd = gdk_win32_surface_get_impl_hwnd (context_ime->client_surface);
himc = ImmGetContext (hwnd);