diff options
author | George Hazan <george.hazan@gmail.com> | 2016-02-25 13:47:23 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-02-25 13:47:23 +0000 |
commit | 8bf03133314064ec052873b01647c79b69a5b681 (patch) | |
tree | 3fa208ebec566236558fcbead39709ba44ac40fe /plugins/Quotes/src/CreateFilePath.cpp | |
parent | 42095fb5cb7228f9dfb94965988029fd7f47b793 (diff) |
more shit removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@16336 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Quotes/src/CreateFilePath.cpp')
-rw-r--r-- | plugins/Quotes/src/CreateFilePath.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Quotes/src/CreateFilePath.cpp b/plugins/Quotes/src/CreateFilePath.cpp index e02cb91cd3..ef728791d3 100644 --- a/plugins/Quotes/src/CreateFilePath.cpp +++ b/plugins/Quotes/src/CreateFilePath.cpp @@ -2,7 +2,7 @@ static TCHAR InvalidSymbols[] = { _T('\\'), _T('/'), _T(':'), _T('*'), _T('?'), _T('"'), _T('<'), _T('>'), _T('|') };
-TCHAR replace_invalid_symbol(TCHAR chr)
+static TCHAR replace_invalid_symbol(TCHAR chr)
{
for (int i = 0; i < _countof(InvalidSymbols); ++i)
if (chr == InvalidSymbols[i])
|