move translation function _ to qtui.h/noui.h instead of util.h

This commit is contained in:
Wladimir J. van der Laan 2012-03-24 21:13:48 +01:00
parent 6cb6d62347
commit 5d7cebdadc
2 changed files with 5 additions and 7 deletions

View file

@ -66,4 +66,9 @@ inline void InitMessage(const std::string &message)
{
}
inline const char* _(const char* psz)
{
return psz;
}
#endif

View file

@ -95,13 +95,6 @@ inline void Sleep(int64 n)
}
#endif
#if !defined(QT_GUI)
inline const char* _(const char* psz)
{
return psz;
}
#endif