diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-05-23 20:51:11 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-05-23 20:51:11 +0000 |
commit | 2e5c904f370d48a8e780ce64db2633d54ec0f5cd (patch) | |
tree | 9d18c3dd5cb067588c6a8e345f96230e323703c8 /plugins/Dropbox/src/dropbox_menus.cpp | |
parent | 8e146597bbd27b72a42a3a197c1db17153e2e0b3 (diff) |
Dropbox:
- fixed crash on file upload
- added upload icon (thx dracosha)
- resource fix
- version bump
git-svn-id: http://svn.miranda-ng.org/main/trunk@13797 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox/src/dropbox_menus.cpp')
-rw-r--r-- | plugins/Dropbox/src/dropbox_menus.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Dropbox/src/dropbox_menus.cpp b/plugins/Dropbox/src/dropbox_menus.cpp index e14948e791..b03f25104a 100644 --- a/plugins/Dropbox/src/dropbox_menus.cpp +++ b/plugins/Dropbox/src/dropbox_menus.cpp @@ -18,9 +18,9 @@ void CDropbox::InitializeMenus() CLISTMENUITEM mi = { 0 };
mi.cbSize = sizeof(CLISTMENUITEM);
mi.pszService = MODULE"/SendFilesToDropbox";
- mi.pszName = LPGEN("Send files to Dropbox");
+ mi.pszName = LPGEN("Upload files to Dropbox");
mi.position = -2000020000 + CMI_SEND_FILES;
- mi.icolibItem = GetIconHandle(IDI_DROPBOX);
+ mi.icolibItem = GetIconHandleByName("upload");
contactMenuItems[CMI_SEND_FILES] = Menu_AddContactMenuItem(&mi);
CreateServiceFunctionObj(mi.pszService, SendFilesToDropboxCommand, this);
}
|