diff options
author | George Hazan <ghazan@miranda.im> | 2017-02-14 15:34:13 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-02-14 15:34:20 +0300 |
commit | 43ab22c6b58eccb328b1c738e6d7aa8e171e9d3f (patch) | |
tree | 560e3e192b55a2abed9b4d3cb5a15fc2e175bed4 /plugins/SendScreenshotPlus/src/CSendDropbox.h | |
parent | f1316ce218d01d5db243beb027039939cbb8710e (diff) |
- fixes #712 (chaos in file name processing)
- massive code cleaning
Diffstat (limited to 'plugins/SendScreenshotPlus/src/CSendDropbox.h')
-rw-r--r-- | plugins/SendScreenshotPlus/src/CSendDropbox.h | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/plugins/SendScreenshotPlus/src/CSendDropbox.h b/plugins/SendScreenshotPlus/src/CSendDropbox.h index a083ab0a83..ccbc5bea59 100644 --- a/plugins/SendScreenshotPlus/src/CSendDropbox.h +++ b/plugins/SendScreenshotPlus/src/CSendDropbox.h @@ -31,20 +31,19 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "Utils.h" -//--------------------------------------------------------------------------- -class CSendDropbox : public CSend { - public: - CSendDropbox(HWND Owner, MCONTACT hContact, bool bAsync); - ~CSendDropbox(); - - int Send(); - - protected: - void SendThread(); - static void SendThreadWrapper(void *Obj); - static int OnDropAck(void*, WPARAM, LPARAM); -}; +class CSendDropbox : public CSend +{ + +public: + CSendDropbox(HWND Owner, MCONTACT hContact, bool bAsync); + ~CSendDropbox(); -//--------------------------------------------------------------------------- + int Send(); + +protected: + void SendThread(); + static void SendThreadWrapper(void *Obj); + static int OnDropAck(void*, WPARAM, LPARAM); +}; #endif |