Skip to content

Commit 9b07902

Browse files
committed
fix typo
1 parent e9c4b57 commit 9b07902

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

GuiLite.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1840,9 +1840,9 @@ class c_dialog : public c_wnd
18401840
#define ENTER_WIDTH (KEY_WIDTH * 2 + 2)
18411841
#define POS_X(c) ((KEY_WIDTH * c) + (c + 1) * 2)
18421842
#define POS_Y(r) ((KEY_HEIGHT * r) + (r + 1) * 2)
1843-
#define KEYBORAD_CLICK 0x5014
1843+
#define KEYBOARD_CLICK 0x5014
18441844
#define ON_KEYBORAD_UPDATE(func) \
1845-
{MSG_TYPE_WND, KEYBORAD_CLICK, 0, msgCallback(&func)},
1845+
{MSG_TYPE_WND, KEYBOARD_CLICK, 0, msgCallback(&func)},
18461846
typedef enum
18471847
{
18481848
STATUS_UPPERCASE,

src/widgets/keyboard.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
#define POS_X(c) ((KEY_WIDTH * c) + (c + 1) * 2)
3030
#define POS_Y(r) ((KEY_HEIGHT * r) + (r + 1) * 2)
3131

32-
#define KEYBORAD_CLICK 0x5014
32+
#define KEYBOARD_CLICK 0x5014
3333
#define ON_KEYBORAD_UPDATE(func) \
34-
{MSG_TYPE_WND, KEYBORAD_CLICK, 0, msgCallback(&func)},
34+
{MSG_TYPE_WND, KEYBOARD_CLICK, 0, msgCallback(&func)},
3535

3636
typedef enum
3737
{

0 commit comments

Comments
 (0)