some more fixes

git-svn-id: https://clonekeenplus.svn.sourceforge.net/svnroot/clonekeenplus/cgenius/trunk@157 4df4b0f3-56ce-47cb-b001-ed939b7d65a6
This commit is contained in:
albertzeyer
2009-07-24 18:28:43 +00:00
parent f854745f9e
commit 01c6db1b9b
6 changed files with 24 additions and 18 deletions

View File

@@ -72,13 +72,13 @@ void CLogFile::WriteTopic(const char *Topic, int Size)
// Now with colors
void CLogFile::textOut(int Color, const char *Text)
void CLogFile::textOut(FONTCOLORS Color, const char *Text)
{
textOut(Color, false, Text);
}
// Now the entire definition (with list and color)
void CLogFile::textOut(int Color, bool List, const char *Text)
void CLogFile::textOut(FONTCOLORS Color, bool List, const char *Text)
{
if(List == true)
textOut("<li>");
@@ -128,7 +128,7 @@ void CLogFile::ftextOut(const char *Text, ...)
textOut(buffer);
}
void CLogFile::ftextOut(int Color, bool List, const char *Text, ...)
void CLogFile::fltextOut(FONTCOLORS Color, bool List, const char *Text, ...)
{
char buffer[MAX_BUFFER];
va_list pArgList;
@@ -140,7 +140,7 @@ void CLogFile::ftextOut(int Color, bool List, const char *Text, ...)
textOut(Color, List, buffer);
}
void CLogFile::ftextOut(int Color, const char *Text, ...)
void CLogFile::ftextOut(FONTCOLORS Color, const char *Text, ...)
{
char buffer[MAX_BUFFER];
va_list pArgList;