summaryrefslogtreecommitdiffstats
path: root/src/OSSupport/File.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/OSSupport/File.cpp')
-rw-r--r--src/OSSupport/File.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/OSSupport/File.cpp b/src/OSSupport/File.cpp
index 1ee9feafe..8957dfaef 100644
--- a/src/OSSupport/File.cpp
+++ b/src/OSSupport/File.cpp
@@ -453,29 +453,6 @@ AString cFile::ReadWholeFile(const AString & a_FileName)
-AString cFile::ReplaceFileNameInvalidChars(const AString & a_FileName, char a_Replacement)
-{
- AString res(a_FileName);
- for (auto & ch: res)
- {
- switch (ch)
- {
- case ':':
- case '\\':
- case '/':
- {
- ch = a_Replacement;
- break;
- }
- }
- }
- return res;
-}
-
-
-
-
-
int cFile::Printf(const char * a_Fmt, ...)
{
AString buf;