diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-10-08 08:00:05 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-10-08 08:00:05 +0200 |
commit | d8c1c2b1aef3d4263ced2dc355a2da5a1786efc0 (patch) | |
tree | 2ec28ac9b2d9a65766c486598a3be4e2c043fea3 /plugingui | |
parent | af8e86cf2ed56229ce80010bc856a727cc9d1655 (diff) |
Add another missing namespace prefix to KeyEvent.
Diffstat (limited to 'plugingui')
-rw-r--r-- | plugingui/nativewindow_win32.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugingui/nativewindow_win32.cc b/plugingui/nativewindow_win32.cc index fa4b611..a68f656 100644 --- a/plugingui/nativewindow_win32.cc +++ b/plugingui/nativewindow_win32.cc @@ -187,7 +187,7 @@ LRESULT CALLBACK dialogProc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp) GUI::KeyEvent *e = new GUI::KeyEvent(); e->keycode = GUI::KeyEvent::KEY_CHARACTER; e->text += (char)wp; - e->direction = KeyEvent::Up; + e->direction = GUI::KeyEvent::Up; native->event = e; } } |