One more encoding fix. Hopefully the last one.

This commit is contained in:
Olivier Teulière 2010-01-24 00:53:21 +00:00
parent b1d05a1059
commit 14ce195e83

View file

@ -46,7 +46,7 @@ QString qfw(const wstring &wstr);
#define qfu(s) QString::fromUtf8(s)
#define qtu(s) (s).toUtf8().data()
// Translation macro to use gettext
#define _q(s) qfl(_(s))
#define _q(s) QString::fromLocal8Bit(_(s))
// Used for QSettings
#define ORGANIZATION "eliot"