summaryrefslogtreecommitdiff
path: root/plugins/SendScreenshotPlus/src/CSendDropbox.cpp
diff options
context:
space:
mode:
authorRené Schümann <white06tiger@gmail.com>2014-04-26 21:49:59 +0000
committerRené Schümann <white06tiger@gmail.com>2014-04-26 21:49:59 +0000
commit71c895b8ac4ff0b833122cd0a86bdd71790a769e (patch)
tree346f2d3d45702e964a9adbc43bffc876716a488d /plugins/SendScreenshotPlus/src/CSendDropbox.cpp
parent9b47472d0558204fcf49a65b6accfd14a8b5ac06 (diff)
SendSS:
* added todo's for Dropbox support and temporarily fixed problem with image deletion before upload "really" started. (CSendDropbox) git-svn-id: http://svn.miranda-ng.org/main/trunk@9089 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SendScreenshotPlus/src/CSendDropbox.cpp')
-rw-r--r--plugins/SendScreenshotPlus/src/CSendDropbox.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/SendScreenshotPlus/src/CSendDropbox.cpp b/plugins/SendScreenshotPlus/src/CSendDropbox.cpp
index e11677931f..10e6fb65c7 100644
--- a/plugins/SendScreenshotPlus/src/CSendDropbox.cpp
+++ b/plugins/SendScreenshotPlus/src/CSendDropbox.cpp
@@ -32,7 +32,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//---------------------------------------------------------------------------
CSendDropbox::CSendDropbox(HWND Owner, MCONTACT hContact, bool bAsync)
: CSend(Owner, hContact, bAsync){
- m_EnableItem = SS_DLG_DESCRIPTION | SS_DLG_AUTOSEND | SS_DLG_DELETEAFTERSSEND;
+/// @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 = LPGENT("Dropbox transfer");
}
@@ -53,6 +54,7 @@ int CSendDropbox::Send() {
void CSendDropbox::SendThread() {
+/// @todo : SS_DLG_DESCRIPTION and SS_DLG_DELETEAFTERSSEND are of no use as of now since we don't track upload progress
INT_PTR ret=0;
if(!m_hContact)
SetContact(db_find_first("Dropbox"));