Fix typo in desktop-client.c.

This commit is contained in:
Daiki Ueno
2011-03-02 17:00:37 +09:00
parent 838a15d31a
commit a8148683d3

View File

@ -35,6 +35,7 @@
#include "eek/eek-xkl.h" #include "eek/eek-xkl.h"
#include "eekboard/eekboard.h" #include "eekboard/eekboard.h"
#include "desktop-client.h" #include "desktop-client.h"
#include "xklutil.h"
#define CSW 640 #define CSW 640
#define CSH 480 #define CSH 480
@ -537,11 +538,11 @@ set_keyboard (EekboardDesktopClient *client,
} }
if (options) { if (options) {
gchar **options; gchar **_options;
options = g_strsplit (options, ",", -1); _options = g_strsplit (options, ",", -1);
if (!eek_xkl_layout_set_options (EEK_XKL_LAYOUT(layout), options)) { if (!eek_xkl_layout_set_options (EEK_XKL_LAYOUT(layout), _options)) {
g_strfreev (options); g_strfreev (_options);
g_object_unref (layout); g_object_unref (layout);
return FALSE; return FALSE;
} }