summaryrefslogtreecommitdiff
path: root/plugins/SendScreenshotPlus
diff options
context:
space:
mode:
authorRené Schümann <white06tiger@gmail.com>2014-04-03 03:26:58 +0000
committerRené Schümann <white06tiger@gmail.com>2014-04-03 03:26:58 +0000
commited7e7ac58e37b7d51e84fb832efec9d70e18eb5e (patch)
tree8d7cdaf29de1777ddcf20f480b2fc85b2068bf3d /plugins/SendScreenshotPlus
parent0719417f2521293437b4e4b205985dc16479bcc0 (diff)
SendSS
fix for r8835 ... added IDD_UResultForm to resource script somehow my change got lost... had to redo them from scratch :( Let's hope this was all I've lost... (never trust "Restore after commit" ... or maybe I've just forgot to use it since I'm tired as well) git-svn-id: http://svn.miranda-ng.org/main/trunk@8837 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SendScreenshotPlus')
-rw-r--r--plugins/SendScreenshotPlus/res/resource.rc21
-rw-r--r--plugins/SendScreenshotPlus/src/CSendImageShack.cpp2
2 files changed, 13 insertions, 10 deletions
diff --git a/plugins/SendScreenshotPlus/res/resource.rc b/plugins/SendScreenshotPlus/res/resource.rc
index bd2f2e40b0..acf31272e1 100644
--- a/plugins/SendScreenshotPlus/res/resource.rc
+++ b/plugins/SendScreenshotPlus/res/resource.rc
@@ -125,11 +125,17 @@ BEGIN
COMBOBOX ID_edtCaption,4,12,158,30,CBS_DROPDOWNLIST | CBS_AUTOHSCROLL | WS_TABSTOP
END
-IDD_CAPTURE DIALOGEX 0, 0, 316, 180
-STYLE DS_SYSMODAL | DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
-CAPTION "Dialog"
-FONT 8, "MS Shell Dlg", 400, 0, 0x1
+IDD_UResultForm DIALOGEX 0, 0, 300, 87
+STYLE DS_SETFONT | DS_MODALFRAME | DS_3DLOOK | DS_FIXEDSYS | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU
+CAPTION "Result"
+FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
+ CONTROL "",IDC_HEADERBAR,"MHeaderbarCtrl",0x0, 0,0,300,25
+ EDITTEXT ID_edtURL, 0,25,300,13, ES_CENTER | ES_AUTOHSCROLL
+ LTEXT "",ID_bvlDesc, 3,38,294,22
+ CONTROL "",IDC_STATIC,"Static",SS_ETCHEDHORZ, 0,62,300,1
+ CONTROL "&Copy",IDOK,"UInfoButtonClass",WS_GROUP | WS_TABSTOP | 0x1000, 95,68,50,14, WS_EX_NOACTIVATE | 0x10000000L
+ CONTROL "Close",IDCANCEL,"UInfoButtonClass",WS_GROUP | WS_TABSTOP | 0x1000, 155,68,50,14, WS_EX_NOACTIVATE | 0x10000000L
END
@@ -248,12 +254,9 @@ BEGIN
VERTGUIDE, 162
END
- IDD_CAPTURE, DIALOG
+ IDD_UResultForm, DIALOG
BEGIN
- LEFTMARGIN, 7
- RIGHTMARGIN, 309
- TOPMARGIN, 7
- BOTTOMMARGIN, 173
+ HORZGUIDE, 159
END
END
#endif // APSTUDIO_INVOKED
diff --git a/plugins/SendScreenshotPlus/src/CSendImageShack.cpp b/plugins/SendScreenshotPlus/src/CSendImageShack.cpp
index d6e9809859..0906979e86 100644
--- a/plugins/SendScreenshotPlus/src/CSendImageShack.cpp
+++ b/plugins/SendScreenshotPlus/src/CSendImageShack.cpp
@@ -206,7 +206,7 @@ void CSendImageShack::SendThread() {
mir_free(err);
}
}else{
- Error(NULL, TranslateT("Upload server did not respond timely."));
+ Error(NULL, TranslateT("Upload server did not respond timely."));
}
CallService(MS_NETLIB_FREEHTTPREQUESTSTRUCT, 0, (LPARAM) m_nlreply);
m_nlreply = NULL;