include and ifdef clean-up

This commit is contained in:
unK
2008-10-07 16:03:09 +02:00
parent c6fea611bf
commit fc00baa300
5 changed files with 16 additions and 21 deletions

View File

@@ -36,13 +36,13 @@ void Scrollpad::Add(string str)
itsRawContent += str;
#ifdef UTF8_ENABLED
# ifdef UTF8_ENABLED
wstring s = ToWString(str);
wstring tmp;
#else
# else
string &s = str;
string tmp;
#endif
# endif
int x_pos = 0;
int space_pos = 0;