Introduce wgettext

All usages of gettext() are converted to wchars, so let's factor this
into a single inline.
This commit is contained in:
Giuseppe Bilotta 2011-07-31 09:03:19 +02:00
parent 60bd878f0a
commit 817180bd55
1 changed files with 5 additions and 0 deletions

View File

@ -30,6 +30,11 @@ inline wchar_t* chartowchar_t(const char *str)
return nstr;
}
inline wchar_t* wgettext(const char *str)
{
return chartowchar_t(gettext(str));
}
inline void changeCtype(const char *l)
{
char *ret = NULL;