summaryrefslogtreecommitdiff
path: root/plugins/CloudFile/src/Services/yandex_service.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-03-30 21:12:27 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-03-30 21:12:27 +0300
commitf67bf4f191b394e9c061d0cd386309ad7be05331 (patch)
tree81772997f2aa0b77542cf28b0f823048770a900a /plugins/CloudFile/src/Services/yandex_service.cpp
parent0a8a140351a533e2fb895228589efd2846b9c697 (diff)
fix for the oper-optimizing MSVC compiler
Diffstat (limited to 'plugins/CloudFile/src/Services/yandex_service.cpp')
-rw-r--r--plugins/CloudFile/src/Services/yandex_service.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/CloudFile/src/Services/yandex_service.cpp b/plugins/CloudFile/src/Services/yandex_service.cpp
index 88419fffc4..f0b09adf4b 100644
--- a/plugins/CloudFile/src/Services/yandex_service.cpp
+++ b/plugins/CloudFile/src/Services/yandex_service.cpp
@@ -282,12 +282,12 @@ UINT CYandexService::Upload(FileTransferParam *ftp)
/////////////////////////////////////////////////////////////////////////////////////////
-struct CMPlugin : public CMPluginBase
+struct CMPluginYandex : public CMPluginBase
{
- CMPlugin() :
+ CMPluginYandex() :
CMPluginBase(MODULE "/YandexDisk")
{
RegisterProtocol(PROTOTYPE_PROTOCOL, (pfnInitProto)CYandexService::Init, (pfnUninitProto)CYandexService::UnInit);
}
}
-static g_plugin;
+ g_pluginYandex;