1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
diff -pruN scim-anthy-1.2.7.orig/src/scim_anthy_prefs.cpp scim-anthy-1.2.7/src/scim_anthy_prefs.cpp
--- scim-anthy-1.2.7.orig/src/scim_anthy_prefs.cpp 2008-04-24 12:49:53.000000000 +0900
+++ scim-anthy-1.2.7/src/scim_anthy_prefs.cpp 2016-02-16 19:04:49.000191000 +0900
@@ -95,6 +95,7 @@ BoolConfigData config_bool_common [] =
N_("A_llow spliting romaji on editing preedit string"),
NULL,
N_("If this check is enabled, you can delete each letter."),
+ NULL,
false,
},
{
@@ -104,6 +105,7 @@ BoolConfigData config_bool_common [] =
N_("_Entering the pseudo ASCII input mode with capital letters."),
NULL,
N_("If this check is enabled, capital letters will becomes a trigger to enter the pseudo ASCII input mode."),
+ NULL,
false,
},
{
@@ -113,6 +115,7 @@ BoolConfigData config_bool_common [] =
N_("Insert a _blank with a blank key."),
NULL,
N_("If this check is enabled, a blank key will works to insert a blank when entering the pseudo ASCII input mode."),
+ NULL,
false,
},
{
@@ -122,6 +125,7 @@ BoolConfigData config_bool_common [] =
N_("_Show predicted candidates while inputting letters"),
NULL,
NULL,
+ NULL,
false,
},
{
@@ -131,6 +135,7 @@ BoolConfigData config_bool_common [] =
N_("Use _direct select keys while predicting"),
NULL,
NULL,
+ NULL,
false,
},
{
@@ -215,8 +220,8 @@ BoolConfigData config_bool_common [] =
},
{
NULL,
- "",
- "",
+ false,
+ false,
NULL,
NULL,
NULL,
@@ -272,6 +277,7 @@ IntConfigData config_int_common [] =
NULL,
NULL,
NULL,
+ NULL,
NULL,
false,
},
|