diff options
author | aunsane <aunsane@gmail.com> | 2018-03-11 21:29:25 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2018-03-11 21:30:54 +0300 |
commit | 5532fd4e1374c15c13e203a89b7cd060c7e15499 (patch) | |
tree | c96b03c78f6c9be6dd365e8c83f30090c58e6e22 /plugins/CloudFile/src/file_transfer.h | |
parent | 30b4b861bc47eab24d3236879d50791871d5c90a (diff) |
CloudFile should create Miranda NG folder instead of placing files into Yandex Disk root (fixed #1184)
Diffstat (limited to 'plugins/CloudFile/src/file_transfer.h')
-rw-r--r-- | plugins/CloudFile/src/file_transfer.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/plugins/CloudFile/src/file_transfer.h b/plugins/CloudFile/src/file_transfer.h index 601933e3dc..bf055d737f 100644 --- a/plugins/CloudFile/src/file_transfer.h +++ b/plugins/CloudFile/src/file_transfer.h @@ -17,7 +17,6 @@ private: const wchar_t* folderName; int relativePathStart; - CMStringW data; LIST<char> m_links; CMStringW m_description; @@ -79,13 +78,6 @@ public: return pfts.hContact; } - const wchar_t* GetData() const - { - if (data.IsEmpty()) - return NULL; - return data; - } - const wchar_t* GetDescription() const { return m_description.GetString(); @@ -153,14 +145,6 @@ public: } } - void AppendFormatData(const wchar_t *format, ...) - { - va_list args; - va_start(args, format); - data.AppendFormatV(format, args); - va_end(args); - } - void AddSharedLink(const char *url) { m_links.insert(mir_strdup(url)); |