diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:04:59 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:04:59 +0200 |
commit | f570e2f2685aa43aa518c2f8578391c1847cddbe (patch) | |
tree | b9376b3a7e807c5e0c4cf3d5615c14034d9675d6 /shared/zstring.h | |
parent | 3.2 (diff) | |
download | FreeFileSync-f570e2f2685aa43aa518c2f8578391c1847cddbe.tar.gz FreeFileSync-f570e2f2685aa43aa518c2f8578391c1847cddbe.tar.bz2 FreeFileSync-f570e2f2685aa43aa518c2f8578391c1847cddbe.zip |
3.3
Diffstat (limited to 'shared/zstring.h')
-rw-r--r-- | shared/zstring.h | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/shared/zstring.h b/shared/zstring.h index d0be30bf..cb047e15 100644 --- a/shared/zstring.h +++ b/shared/zstring.h @@ -52,7 +52,7 @@ public: #ifdef FFS_WIN int CmpNoCase(const DefaultChar* other) const; int CmpNoCase(const Zstring& other) const; - Zstring& MakeLower(); + Zstring& MakeUpper(); #endif int Cmp(const DefaultChar* other) const; int Cmp(const Zstring& other) const; @@ -134,6 +134,28 @@ template <class T> Zstring numberToZstring(const T& number); //convert number to Zstring + + + + + + + + + + + + + + + + + + + + + + //####################################################################################### //begin of implementation |