diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 16:58:10 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 16:58:10 +0200 |
commit | fefe20351d0720683990b666584b6879c90bd37d (patch) | |
tree | 8ab90520ae2123ac84293b0f9cec006317e5fc01 /library/zstring.cpp | |
parent | 1.18 (diff) | |
download | FreeFileSync-fefe20351d0720683990b666584b6879c90bd37d.tar.gz FreeFileSync-fefe20351d0720683990b666584b6879c90bd37d.tar.bz2 FreeFileSync-fefe20351d0720683990b666584b6879c90bd37d.zip |
1.19
Diffstat (limited to 'library/zstring.cpp')
-rw-r--r-- | library/zstring.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/library/zstring.cpp b/library/zstring.cpp index abded9d0..ddf1fc73 100644 --- a/library/zstring.cpp +++ b/library/zstring.cpp @@ -1,5 +1,4 @@ #include "zstring.h" -#include <wx/intl.h> #include "globalFunctions.h" #ifdef FFS_WIN @@ -124,6 +123,12 @@ bool Zstring::Matches(const DefaultChar* mask) const } +bool Zstring::Matches(const DefaultChar* name, const DefaultChar* mask) +{ + return matchesHelper(name, mask); +} + + Zstring& Zstring::Trim(bool fromRight) { const size_t thisLen = length(); |