reference: Hotkey minor fix

git-svn-id: svn://ultimatepp.org/upp/trunk@1591 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2009-09-25 08:09:43 +00:00
parent 824a7c7902
commit f7f80b62eb

View file

@ -15,7 +15,7 @@ void HotKey2()
GUI_APP_MAIN
{
TopWindow win;
int id = Ctrl::RegisterSystemHotKey(K_ALT|K_CTRL|K_F11, callback(HotKey1));
int id = Ctrl::RegisterSystemHotKey(K_CTRL|K_F1, callback(HotKey1));
Ctrl::RegisterSystemHotKey(K_ALT|K_CTRL|K_SHIFT|K_A, callback(HotKey2));
win.Run();
Ctrl::UnregisterSystemHotKey(id);