From fff85d59848d265184c80bd6276923b503df95f8 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 12 Aug 2015 21:05:10 +0000 Subject: naming conflics resolved git-svn-id: http://svn.miranda-ng.org/main/trunk@14933 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/BasicHistory/src/ExportManager.h | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) (limited to 'plugins/BasicHistory/src/ExportManager.h') diff --git a/plugins/BasicHistory/src/ExportManager.h b/plugins/BasicHistory/src/ExportManager.h index ea3aa208b3..1cefb47463 100644 --- a/plugins/BasicHistory/src/ExportManager.h +++ b/plugins/BasicHistory/src/ExportManager.h @@ -22,38 +22,39 @@ along with this program. If not, see . #include "IImport.h" class ExportManager : public HistoryEventList { -private: - IExport* exp; - std::wstring file; - HWND hwnd; - bool oldOnTop; + IExport* m_exp; + std::wstring m_file; + HWND m_hwnd; + bool m_oldOnTop; + protected: virtual void AddGroup(bool isMe, const std::wstring &time, const std::wstring &user, const std::wstring &eventText, int ico); + public: ExportManager(HWND _hwnd, MCONTACT _hContact, int filter); - void SetAutoExport(const std::wstring _file, int _deltaTime, DWORD _now) + void SetAutoExport(const std::wstring _file, int deltaTime, DWORD now) { - file = _file; - deltaTime = _deltaTime; - now = _now; + m_file = _file; + m_deltaTime = deltaTime; + m_now = now; } void SetAutoImport(const std::wstring _file) { - file = _file; + m_file = _file; } std::wstring GetFileName() { - return file; + return m_file; } bool Export(IExport::ExportType type); - void SetDeleteWithoutExportEvents(int _deltaTime, DWORD _now); + void SetDeleteWithoutExportEvents(int deltaTime, DWORD now); void DeleteExportedEvents(); - int Import(IImport::ImportType type, const std::vector& contacts); - bool Import(IImport::ImportType type, std::vector& eventList, std::wstring* err = NULL, bool* differentContact = NULL, std::vector* contacts = NULL); + int Import(IImport::ImportType type, const std::vector &contacts); + bool Import(IImport::ImportType type, std::vector &eventList, std::wstring *err = NULL, bool *differentContact = NULL, std::vector *contacts = NULL); static const TCHAR* GetExt(IImport::ImportType type); }; -- cgit v1.2.3