diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2017-09-18 19:03:33 +0300 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2017-09-18 19:03:33 +0300 |
commit | 07e552f62b366f8ec30551ad9826d8954124b696 (patch) | |
tree | e7ba0a6577df0a438c4c3ae16f101b2510b19588 /plugins/StopSpamMod/src/options.cpp | |
parent | 3e9e96f6718b13c069138fb40f24f065ac03c6b7 (diff) |
StopSpamMod: removed template for hooking events
Diffstat (limited to 'plugins/StopSpamMod/src/options.cpp')
-rwxr-xr-x | plugins/StopSpamMod/src/options.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/StopSpamMod/src/options.cpp b/plugins/StopSpamMod/src/options.cpp index ba5fd494cb..cfb15f66c3 100755 --- a/plugins/StopSpamMod/src/options.cpp +++ b/plugins/StopSpamMod/src/options.cpp @@ -312,8 +312,7 @@ INT_PTR CALLBACK AdvancedDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lPar return FALSE;
}
-HINSTANCE hInst;
-MIRANDA_HOOK_EVENT(ME_OPT_INITIALISE, w, l)
+int OnOptInit(WPARAM w, LPARAM l)
{
UNREFERENCED_PARAMETER(l);
|