summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorDaiki Ueno <ueno@unixuser.org>2010-12-15 18:32:17 +0900
committerDaiki Ueno <ueno@unixuser.org>2010-12-15 18:32:17 +0900
commitc3c20f8e45c27440e188e2bac3baca05cc966d71 (patch)
tree745c955d007e703eed1ca369f85f1edcbeddced6 /client
parentbd5ead57debd3165d7dd89b099a1faadaa223eb3 (diff)
Fix gtk version check for deprecated keysyms.
From the git log of gtk3, they started adding _KEY from 2.91.0 not 2.90.0. BUG=none TEST=manual Review URL: http://codereview.appspot.com/3670041
Diffstat (limited to 'client')
-rw-r--r--client/gtk2/ibusimcontext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/gtk2/ibusimcontext.c b/client/gtk2/ibusimcontext.c
index 3d3e0117..fb6fb2da 100644
--- a/client/gtk2/ibusimcontext.c
+++ b/client/gtk2/ibusimcontext.c
@@ -29,7 +29,7 @@
#include <ibus.h>
#include "ibusimcontext.h"
-#if !GTK_CHECK_VERSION (2, 90, 0)
+#if !GTK_CHECK_VERSION (2, 91, 0)
# define DEPRECATED_GDK_KEYSYMS 1
#endif