diff options
author | aunsane <aunsane@gmail.com> | 2017-04-25 23:14:48 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2017-04-26 00:02:28 +0300 |
commit | f6575a156251f15ca2c1b9d8042aa45fb62bf42a (patch) | |
tree | e666979a4eeb36266dce7f3b66494490684dae07 /plugins/CloudFile/src/Services/microsoft_service.cpp | |
parent | 8331fa1e2a38cb64ac3c97e0e8bfdd11d2c08b85 (diff) |
CloudFile: ability to disable services
Diffstat (limited to 'plugins/CloudFile/src/Services/microsoft_service.cpp')
-rw-r--r-- | plugins/CloudFile/src/Services/microsoft_service.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CloudFile/src/Services/microsoft_service.cpp b/plugins/CloudFile/src/Services/microsoft_service.cpp index d002db45e6..d988ec222a 100644 --- a/plugins/CloudFile/src/Services/microsoft_service.cpp +++ b/plugins/CloudFile/src/Services/microsoft_service.cpp @@ -16,9 +16,9 @@ const wchar_t* COneDriveService::GetText() const return L"OneDrive"; } -HANDLE COneDriveService::GetIcon() const +int COneDriveService::GetIconId() const { - return GetIconHandle(IDI_ONEDRIVE); + return IDI_ONEDRIVE; } bool COneDriveService::IsLoggedIn() |