diff options
Diffstat (limited to 'plugins/Popup')
-rw-r--r-- | plugins/Popup/src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Popup/src/main.cpp b/plugins/Popup/src/main.cpp index 73920652fb..a239965695 100644 --- a/plugins/Popup/src/main.cpp +++ b/plugins/Popup/src/main.cpp @@ -367,13 +367,13 @@ void LoadHotkey() { hk.ptszDescription = LPGENT("Toggle Popups");
hk.ptszSection = LPGENT(MODULNAME_PLU);
hk.pszService = MENUCOMMAND_SVC;
- CallService(MS_HOTKEY_REGISTER, 0, (LPARAM) &hk);
+ Hotkey_Register( &hk);
// 'Popup History' Hotkey
hk.pszName = "Popup History";
hk.ptszDescription = LPGENT("Popup History");
hk.pszService = MENUCOMMAND_HISTORY;
- CallService(MS_HOTKEY_REGISTER, 0, (LPARAM) &hk);
+ Hotkey_Register( &hk);
}
//menu
|