Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dorota Czaplejewicz
squeekboard
Commits
a8148683
Commit
a8148683
authored
Mar 02, 2011
by
Daiki Ueno
Browse files
Fix typo in desktop-client.c.
parent
838a15d3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/desktop-client.c
View file @
a8148683
...
...
@@ -35,6 +35,7 @@
#include "eek/eek-xkl.h"
#include "eekboard/eekboard.h"
#include "desktop-client.h"
#include "xklutil.h"
#define CSW 640
#define CSH 480
...
...
@@ -537,11 +538,11 @@ set_keyboard (EekboardDesktopClient *client,
}
if
(
options
)
{
gchar
**
options
;
gchar
**
_
options
;
options
=
g_strsplit
(
options
,
","
,
-
1
);
if
(
!
eek_xkl_layout_set_options
(
EEK_XKL_LAYOUT
(
layout
),
options
))
{
g_strfreev
(
options
);
_
options
=
g_strsplit
(
options
,
","
,
-
1
);
if
(
!
eek_xkl_layout_set_options
(
EEK_XKL_LAYOUT
(
layout
),
_
options
))
{
g_strfreev
(
_
options
);
g_object_unref
(
layout
);
return
FALSE
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment