diff options
| -rw-r--r-- | plugins/SendScreenshotPlus/res/resource.rc | 21 | ||||
| -rw-r--r-- | plugins/SendScreenshotPlus/src/CSendImageShack.cpp | 2 | 
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;  | 
