summaryrefslogtreecommitdiff
path: root/plugins/Dropbox/src/main.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-05-11 17:13:29 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-05-11 17:13:29 +0000
commit9418930c2d211feca1ddeaafa160c3d8ca9a581a (patch)
tree827695e66cc8403f295c56f68fd39c07b38f9543 /plugins/Dropbox/src/main.cpp
parente8ab90ab839ce55a399280f1920e1afd0fb28424 (diff)
- protocol icon is used in all menus & buttons;
- code formatting git-svn-id: http://svn.miranda-ng.org/main/trunk@13551 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox/src/main.cpp')
-rw-r--r--plugins/Dropbox/src/main.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/Dropbox/src/main.cpp b/plugins/Dropbox/src/main.cpp
index 590b9802c4..632464ce33 100644
--- a/plugins/Dropbox/src/main.cpp
+++ b/plugins/Dropbox/src/main.cpp
@@ -1,5 +1,7 @@
#include "stdafx.h"
+void InitializeIcons();
+
int hLangpack;
CDropbox *dropbox;
HINSTANCE g_hInstance;
@@ -16,7 +18,7 @@ PLUGININFOEX pluginInfo =
__AUTHORWEB,
UNICODE_AWARE,
// {B908773A-86F7-4A91-8674-6A20BA0E67D1}
- {0xb908773a, 0x86f7, 0x4a91, {0x86, 0x74, 0x6a, 0x20, 0xba, 0xe, 0x67, 0xd1}}
+ { 0xb908773a, 0x86f7, 0x4a91, { 0x86, 0x74, 0x6a, 0x20, 0xba, 0xe, 0x67, 0xd1 } }
};
@@ -36,8 +38,9 @@ extern "C" int __declspec(dllexport) Load(void)
{
mir_getLP(&pluginInfo);
- dropbox = new CDropbox();
+ InitializeIcons();
+ dropbox = new CDropbox();
return 0;
}