diff options
Diffstat (limited to 'protocols/CloudFile/src/cloud_file.cpp')
-rw-r--r-- | protocols/CloudFile/src/cloud_file.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/protocols/CloudFile/src/cloud_file.cpp b/protocols/CloudFile/src/cloud_file.cpp index 6cd398adb3..81e2c37a2b 100644 --- a/protocols/CloudFile/src/cloud_file.cpp +++ b/protocols/CloudFile/src/cloud_file.cpp @@ -1,7 +1,7 @@ #include "stdafx.h" -CCloudService::CCloudService(const char *protoName, const wchar_t *userName, HPLUGIN pPlugin) - : PROTO<CCloudService>(protoName, userName), +CCloudService::CCloudService(const char *protoName, const wchar_t *userName, HPLUGIN pPlugin) : + PROTO<CCloudService>(protoName, userName), m_pPlugin(pPlugin) { NETLIBUSER nlu = {}; @@ -19,11 +19,6 @@ CCloudService::~CCloudService() m_hConnection = nullptr; } -void CCloudService::OnErase() -{ - KillModuleMenus(m_pPlugin); -} - HPLUGIN CCloudService::GetId() const { return m_pPlugin; |