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/CSendFTPFile.cpp | |
parent | fdbcf7a4ad9d62d6786cd8e2251d797d68488b50 (diff) |
SendSS:
- fixes #1305 completely
- code cleaning
Diffstat (limited to 'plugins/SendScreenshotPlus/src/CSendFTPFile.cpp')
-rw-r--r-- | plugins/SendScreenshotPlus/src/CSendFTPFile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SendScreenshotPlus/src/CSendFTPFile.cpp b/plugins/SendScreenshotPlus/src/CSendFTPFile.cpp index aa45383304..6523accc97 100644 --- a/plugins/SendScreenshotPlus/src/CSendFTPFile.cpp +++ b/plugins/SendScreenshotPlus/src/CSendFTPFile.cpp @@ -64,7 +64,7 @@ int CSendFTPFile::Send() m_pszFileName = (char*)mir_realloc(m_pszFileName, size); m_pszFileName[size - 1] = NULL; - //start Send thread + // start Send thread mir_forkthread(&CSendFTPFile::SendThreadWrapper, this); return 0; } @@ -78,7 +78,7 @@ void CSendFTPFile::SendThread() Exit(ret); return; } - //Can't delete the file since FTP File plugin will use it + // Can't delete the file since FTP File plugin will use it m_bDeleteAfterSend = false; if (m_URL && *m_URL) {/// @fixme : m_URL never set |