diff options
author | René Schümann <white06tiger@gmail.com> | 2014-04-11 00:00:09 +0000 |
---|---|---|
committer | René Schümann <white06tiger@gmail.com> | 2014-04-11 00:00:09 +0000 |
commit | 356e7733127935bae342bc075b5ac020e7fafadd (patch) | |
tree | 248372a3e3aae0444393167857f361dc9a6bc179 /plugins/SendScreenshotPlus/src/Main.cpp | |
parent | 9a4d6d236bcd294d77884441494c2e32f3817b11 (diff) |
SendSS:
* removed some unused stuff, icons, code etc. (resource.rc/h, Main, mir_icolib)
* improved define names IDI_ICON2 and IDI_ICON3 (resource.rc/h)
* unified ssCamera_1.ico and ssCamera_2.ico to ssCamera.ico (resource.rc/h)
! fixed ssMonitor.ico blurriness.
git-svn-id: http://svn.miranda-ng.org/main/trunk@8940 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SendScreenshotPlus/src/Main.cpp')
-rw-r--r-- | plugins/SendScreenshotPlus/src/Main.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/SendScreenshotPlus/src/Main.cpp b/plugins/SendScreenshotPlus/src/Main.cpp index 51e51a9f92..782b4ba403 100644 --- a/plugins/SendScreenshotPlus/src/Main.cpp +++ b/plugins/SendScreenshotPlus/src/Main.cpp @@ -52,8 +52,6 @@ PLUGININFOEX pluginInfo={ {0xed39af7c, 0xbecd, 0x404e, {0x94, 0x99, 0x4d, 0x04, 0xf7, 0x11, 0xb9, 0xcb}} }; -//static char szSendSS[]=SZ_SENDSS; - HANDLE hsvc_SendScreenshot=0; HANDLE hsvc_SendDesktop=0; HANDLE hsvc_EditBitmap=0; @@ -288,7 +286,7 @@ INT_PTR service_Send2ImageShack(WPARAM wParam, LPARAM lParam) { if (cSend->GetURL()) { result=mir_strdup(cSend->GetURL()); }else{ - result=cSend->GetError(); + result=mir_t2a(cSend->GetErrorMsg()); } delete cSend; return (INT_PTR)result; |