2011-02-04 18:06:02 +00:00
|
|
|
From 2cf859f01912fe41fd36edaeb0efc21f4fabcb0f Mon Sep 17 00:00:00 2001
|
2011-01-26 08:27:03 +00:00
|
|
|
From: fujiwarat <takao.fujiwara1@gmail.com>
|
2011-02-04 18:06:02 +00:00
|
|
|
Date: Sat, 5 Feb 2011 03:00:04 +0900
|
|
|
|
Subject: [PATCH] Added GTK3 definitions.
|
2011-01-26 08:27:03 +00:00
|
|
|
|
|
|
|
---
|
2011-02-04 18:06:02 +00:00
|
|
|
client/gtk2/ibusimcontext.c | 9 +++++++++
|
|
|
|
1 files changed, 9 insertions(+), 0 deletions(-)
|
2011-01-26 08:27:03 +00:00
|
|
|
|
2011-02-04 18:06:02 +00:00
|
|
|
diff --git a/client/gtk2/ibusimcontext.c b/client/gtk2/ibusimcontext.c
|
|
|
|
index 745722f..608f294 100644
|
|
|
|
--- a/client/gtk2/ibusimcontext.c
|
|
|
|
+++ b/client/gtk2/ibusimcontext.c
|
|
|
|
@@ -506,12 +506,21 @@ ibus_im_context_class_init (IBusIMContextClass *class)
|
|
|
|
* used extensively.
|
2011-01-26 08:27:03 +00:00
|
|
|
*/
|
2011-02-04 18:06:02 +00:00
|
|
|
static guint16 cedilla_compose_seqs[] = {
|
|
|
|
+#ifdef DEPRECATED_GDK_KEYSYMS
|
|
|
|
GDK_dead_acute, GDK_C, 0, 0, 0, 0x00C7, /* LATIN_CAPITAL_LETTER_C_WITH_CEDILLA */
|
|
|
|
GDK_dead_acute, GDK_c, 0, 0, 0, 0x00E7, /* LATIN_SMALL_LETTER_C_WITH_CEDILLA */
|
|
|
|
GDK_Multi_key, GDK_apostrophe, GDK_C, 0, 0, 0x00C7, /* LATIN_CAPITAL_LETTER_C_WITH_CEDILLA */
|
|
|
|
GDK_Multi_key, GDK_apostrophe, GDK_c, 0, 0, 0x00E7, /* LATIN_SMALL_LETTER_C_WITH_CEDILLA */
|
|
|
|
GDK_Multi_key, GDK_C, GDK_apostrophe, 0, 0, 0x00C7, /* LATIN_CAPITAL_LETTER_C_WITH_CEDILLA */
|
|
|
|
GDK_Multi_key, GDK_c, GDK_apostrophe, 0, 0, 0x00E7, /* LATIN_SMALL_LETTER_C_WITH_CEDILLA */
|
|
|
|
+#else
|
|
|
|
+ GDK_KEY_dead_acute, GDK_KEY_C, 0, 0, 0, 0x00C7, /* LATIN_CAPITAL_LETTER_C_WITH_CEDILLA */
|
|
|
|
+ GDK_KEY_dead_acute, GDK_KEY_c, 0, 0, 0, 0x00E7, /* LATIN_SMALL_LETTER_C_WITH_CEDILLA */
|
|
|
|
+ GDK_KEY_Multi_key, GDK_KEY_apostrophe, GDK_KEY_C, 0, 0, 0x00C7, /* LATIN_CAPITAL_LETTER_C_WITH_CEDILLA */
|
|
|
|
+ GDK_KEY_Multi_key, GDK_KEY_apostrophe, GDK_KEY_c, 0, 0, 0x00E7, /* LATIN_SMALL_LETTER_C_WITH_CEDILLA */
|
|
|
|
+ GDK_KEY_Multi_key, GDK_KEY_C, GDK_KEY_apostrophe, 0, 0, 0x00C7, /* LATIN_CAPITAL_LETTER_C_WITH_CEDILLA */
|
|
|
|
+ GDK_KEY_Multi_key, GDK_KEY_c, GDK_KEY_apostrophe, 0, 0, 0x00E7, /* LATIN_SMALL_LETTER_C_WITH_CEDILLA */
|
|
|
|
+#endif
|
2011-01-26 08:27:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
--
|
|
|
|
1.7.3.2
|
2010-12-28 05:36:20 +00:00
|
|
|
|
2011-02-08 10:02:01 +00:00
|
|
|
From a00ebefde44cf5daaa642fc880c51357cb83f15b Mon Sep 17 00:00:00 2001
|
2011-01-26 08:27:03 +00:00
|
|
|
From: fujiwarat <takao.fujiwara1@gmail.com>
|
2011-02-08 10:02:01 +00:00
|
|
|
Date: Tue, 8 Feb 2011 18:17:11 +0900
|
|
|
|
Subject: [PATCH] Fixed typo.
|
2010-12-28 05:36:20 +00:00
|
|
|
|
|
|
|
---
|
2011-02-08 10:02:01 +00:00
|
|
|
client/gtk2/ibusimcontext.c | 10 +++++-----
|
|
|
|
1 files changed, 5 insertions(+), 5 deletions(-)
|
2011-01-26 08:27:03 +00:00
|
|
|
|
2011-02-04 18:06:02 +00:00
|
|
|
diff --git a/client/gtk2/ibusimcontext.c b/client/gtk2/ibusimcontext.c
|
2011-02-08 10:02:01 +00:00
|
|
|
index 608f294..bb5ae5c 100644
|
2011-02-04 18:06:02 +00:00
|
|
|
--- a/client/gtk2/ibusimcontext.c
|
|
|
|
+++ b/client/gtk2/ibusimcontext.c
|
2011-02-08 10:02:01 +00:00
|
|
|
@@ -401,11 +401,11 @@ _get_boolean_env(const gchar *name,
|
|
|
|
if (value == NULL)
|
|
|
|
return defval;
|
|
|
|
|
|
|
|
- if (g_strcmp0 (name, "") == 0 ||
|
|
|
|
- g_strcmp0 (name, "0") == 0 ||
|
|
|
|
- g_strcmp0 (name, "false") == 0 ||
|
|
|
|
- g_strcmp0 (name, "False") == 0 ||
|
|
|
|
- g_strcmp0 (name, "FALSE") == 0)
|
|
|
|
+ if (g_strcmp0 (value, "") == 0 ||
|
|
|
|
+ g_strcmp0 (value, "0") == 0 ||
|
|
|
|
+ g_strcmp0 (value, "false") == 0 ||
|
|
|
|
+ g_strcmp0 (value, "False") == 0 ||
|
|
|
|
+ g_strcmp0 (value, "FALSE") == 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
--
|
|
|
|
1.7.3.2
|
|
|
|
|
2011-02-14 10:28:13 +00:00
|
|
|
From 0501756a1e51469849eca064aeb1e340afbf8be2 Mon Sep 17 00:00:00 2001
|
2011-02-08 10:02:01 +00:00
|
|
|
From: fujiwarat <takao.fujiwara1@gmail.com>
|
2011-02-14 10:28:13 +00:00
|
|
|
Date: Wed, 9 Feb 2011 00:51:39 +0900
|
|
|
|
Subject: [PATCH] Add pkgdatadir in ibus-1.0.pc.in
|
2011-02-08 10:02:01 +00:00
|
|
|
|
|
|
|
---
|
2011-02-14 10:28:13 +00:00
|
|
|
ibus-1.0.pc.in | 2 ++
|
|
|
|
1 files changed, 2 insertions(+), 0 deletions(-)
|
2011-02-08 10:02:01 +00:00
|
|
|
|
2011-02-14 10:28:13 +00:00
|
|
|
diff --git a/ibus-1.0.pc.in b/ibus-1.0.pc.in
|
|
|
|
index 88357af..9f593ab 100644
|
|
|
|
--- a/ibus-1.0.pc.in
|
|
|
|
+++ b/ibus-1.0.pc.in
|
|
|
|
@@ -2,6 +2,8 @@ prefix=@prefix@
|
|
|
|
exec_prefix=@exec_prefix@
|
|
|
|
libdir=@libdir@
|
|
|
|
includedir=@includedir@
|
|
|
|
+datadir=@datadir@
|
|
|
|
+pkgdatadir=@datadir@/ibus
|
2011-01-26 08:27:03 +00:00
|
|
|
|
2011-02-14 10:28:13 +00:00
|
|
|
Name: IBus
|
|
|
|
Description: IBus Library
|
2010-12-28 05:36:20 +00:00
|
|
|
--
|
|
|
|
1.7.3.2
|
|
|
|
|