diff options
author | George Hazan <ghazan@miranda.im> | 2018-09-04 19:52:35 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-09-04 19:52:35 +0300 |
commit | 61a1179854e8dd939c6566d6fb6ab035ab4a6d9c (patch) | |
tree | 73da29d5f9c04e13e5ed59fca65043141cd6fb1b /plugins/SendScreenshotPlus/src/CSendCloudFile.cpp | |
parent | fdbcf7a4ad9d62d6786cd8e2251d797d68488b50 (diff) |
SendSS:
- fixes #1305 completely
- code cleaning
Diffstat (limited to 'plugins/SendScreenshotPlus/src/CSendCloudFile.cpp')
-rw-r--r-- | plugins/SendScreenshotPlus/src/CSendCloudFile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SendScreenshotPlus/src/CSendCloudFile.cpp b/plugins/SendScreenshotPlus/src/CSendCloudFile.cpp index 842ebaee24..f4daa446b4 100644 --- a/plugins/SendScreenshotPlus/src/CSendCloudFile.cpp +++ b/plugins/SendScreenshotPlus/src/CSendCloudFile.cpp @@ -33,7 +33,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. CSendCloudFile::CSendCloudFile(HWND Owner, MCONTACT hContact, bool bAsync, const char *service) : CSend(Owner, hContact, bAsync), m_service(service) { - /// @todo : re-enable SS_DLG_DELETEAFTERSSEND with full implemention of Dropbox upload with progress, msg and sounds + // @todo : re-enable SS_DLG_DELETEAFTERSSEND with full implemention of Dropbox upload with progress, msg and sounds m_EnableItem = SS_DLG_DESCRIPTION | SS_DLG_AUTOSEND | SS_DLG_DELETEAFTERSSEND; m_pszSendTyp = TranslateT("CloudFile transfer"); } @@ -54,7 +54,7 @@ int CSendCloudFile::Send() void CSendCloudFile::SendThread() { - /// @todo : SS_DLG_DESCRIPTION and SS_DLG_DELETEAFTERSSEND are of no use as of now since we don't track upload progress + // @todo : SS_DLG_DESCRIPTION and SS_DLG_DELETEAFTERSSEND are of no use as of now since we don't track upload progress CFUPLOADDATA ud = { m_service, m_pszFile, L"SendSS" }; CFUPLOADRESULT ur = { }; |