Fix typo in desktop-client.c.
This commit is contained in:
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user