diff options
Diffstat (limited to 'plugins/Popup/src/main.cpp')
-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 51f7891dce..7517084fce 100644 --- a/plugins/Popup/src/main.cpp +++ b/plugins/Popup/src/main.cpp @@ -319,7 +319,7 @@ static int OnShutdown(WPARAM, LPARAM) return 0;
}
-MIRAPI int Load(void)
+int CMPlugin::Load()
{
CreateServiceFunction(MS_POPUP_GETSTATUS, GetStatus);
@@ -404,7 +404,7 @@ MIRAPI int Load(void) // Prepare the plugin to stop
// Called by Miranda when it will exit or when the plugin gets deselected
-MIRAPI int Unload(void)
+int CMPlugin::Unload()
{
DeleteObject(fonts.title);
DeleteObject(fonts.clock);
|