diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:16:21 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:16:21 +0200 |
commit | 88a2d0007db222c339f0b6a17794a2014a241892 (patch) | |
tree | 75105ef49b3a52b7ee176a1ad480e7652e49825f /algorithm.h | |
parent | 4.2 (diff) | |
download | FreeFileSync-88a2d0007db222c339f0b6a17794a2014a241892.tar.gz FreeFileSync-88a2d0007db222c339f0b6a17794a2014a241892.tar.bz2 FreeFileSync-88a2d0007db222c339f0b6a17794a2014a241892.zip |
4.3
Diffstat (limited to 'algorithm.h')
-rw-r--r-- | algorithm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/algorithm.h b/algorithm.h index 6eb9f24d..96ff6b1a 100644 --- a/algorithm.h +++ b/algorithm.h @@ -17,7 +17,7 @@ void swapGrids(const MainConfiguration& config, FolderComparison& folderCmp); struct DeterminationProblem //callback { virtual ~DeterminationProblem() {} - virtual void reportWarning(const wxString& text) = 0; + virtual void reportWarning(const std::wstring& text) = 0; }; std::vector<DirectionConfig> extractDirectionCfg(const MainConfiguration& mainCfg); @@ -56,7 +56,7 @@ public: IGNORE_ERROR = 10, RETRY }; - virtual Response reportError(const wxString& errorMessage) = 0; + virtual Response reportError(const std::wstring& errorMessage) = 0; //virtual void totalFilesToDelete(int objectsTotal) = 0; //informs about the total number of files to be deleted virtual void notifyDeletion(const Zstring& currentObject) = 0; //called for each file/folder that has been deleted |