code clean-ups

This commit is contained in:
unK
2008-09-02 03:53:13 +02:00
parent 184df520b9
commit a37882f62a
10 changed files with 141 additions and 144 deletions

View File

@@ -213,7 +213,7 @@ string GetConfigLineValue(const string &line)
return "";
}
string IntoStr(COLOR color)
string IntoStr(Color color)
{
string result = "";
@@ -237,9 +237,9 @@ string IntoStr(COLOR color)
return result;
}
COLOR IntoColor(const string &color)
Color IntoColor(const string &color)
{
COLOR result = clDefault;
Color result = clDefault;
if (color == "black")
result = clBlack;