aboutsummaryrefslogtreecommitdiff
path: root/src/locale.c
diff options
context:
space:
mode:
authorkoekeishiya <aasvi93@hotmail.com>2017-09-23 23:24:46 +0200
committerkoekeishiya <aasvi93@hotmail.com>2017-09-23 23:24:46 +0200
commitdf3d13c9e655c5a566d471256b5e54cca796f576 (patch)
tree03c13f16ac65b9bc102ac138448c33e869b02271 /src/locale.c
parenteb2315cefc6c4f6375b31e93ca99f1422c78792a (diff)
downloadskhd-df3d13c9e655c5a566d471256b5e54cca796f576.tar.gz
skhd-df3d13c9e655c5a566d471256b5e54cca796f576.zip
code style
Diffstat (limited to 'src/locale.c')
-rw-r--r--src/locale.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/locale.c b/src/locale.c
index 941a1eb..974c3ae 100644
--- a/src/locale.c
+++ b/src/locale.c
@@ -13,7 +13,7 @@ cfstring_from_keycode(CGKeyCode keycode)
CFRelease(keyboard);
UCKeyboardLayout *keyboard_layout = (UCKeyboardLayout *) CFDataGetBytePtr(uchr);
- if(keyboard_layout) {
+ if (keyboard_layout) {
UInt32 dead_key_state = 0;
UniCharCount max_string_length = 255;
UniCharCount string_length = 0;
@@ -27,7 +27,7 @@ cfstring_from_keycode(CGKeyCode keycode)
&string_length,
unicode_string);
- if(string_length == 0 && dead_key_state) {
+ if (string_length == 0 && dead_key_state) {
status = UCKeyTranslate(keyboard_layout, kVK_Space,
kUCKeyActionDown, 0,
LMGetKbdType(), 0,
@@ -37,7 +37,7 @@ cfstring_from_keycode(CGKeyCode keycode)
unicode_string);
}
- if(string_length > 0 && status == noErr) {
+ if (string_length > 0 && status == noErr) {
return CFStringCreateWithCharacters(NULL, unicode_string, string_length);
}
}
@@ -51,11 +51,11 @@ uint32_t keycode_from_char(char key)
{
uint32_t keycode = 0;
local_persist CFMutableDictionaryRef keycode_map = NULL;
- if(!keycode_map) {
+ if (!keycode_map) {
keycode_map = CFDictionaryCreateMutable(kCFAllocatorDefault, 128, &kCFCopyStringDictionaryKeyCallBacks, NULL);
- for(unsigned index = 0; index < 128; ++index) {
+ for (unsigned index = 0; index < 128; ++index) {
CFStringRef key_string = cfstring_from_keycode(index);
- if(key_string) {
+ if (key_string) {
CFDictionaryAddValue(keycode_map, key_string, (const void *)index);
CFRelease(key_string);
}