summaryrefslogtreecommitdiffstats
path: root/src/PYLibPinyin.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/PYLibPinyin.cc')
-rw-r--r--src/PYLibPinyin.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PYLibPinyin.cc b/src/PYLibPinyin.cc
index a9a75e9..eb88e16 100644
--- a/src/PYLibPinyin.cc
+++ b/src/PYLibPinyin.cc
@@ -70,7 +70,7 @@ LibPinyinBackEnd::initPinyinContext (Config *config)
g_free (userdir);
const char *dicts = config->dictionaries ().c_str ();
- gchar ** indices = g_strsplit_set (dicts, "", -1);
+ gchar ** indices = g_strsplit_set (dicts, ";", -1);
for (size_t i = 0; i < g_strv_length(indices); ++i) {
int index = atoi (indices [i]);
if (index <= 1)
@@ -119,7 +119,7 @@ LibPinyinBackEnd::initChewingContext (Config *config)
g_free(userdir);
const char *dicts = config->dictionaries ().c_str ();
- gchar ** indices = g_strsplit_set (dicts, "", -1);
+ gchar ** indices = g_strsplit_set (dicts, ";", -1);
for (size_t i = 0; i < g_strv_length(indices); ++i) {
int index = atoi (indices [i]);
if (index <= 1)