mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 12:20:41 +00:00
Added support for non-latin characters, fixes Bug #515
This commit is contained in:
parent
9198afeefb
commit
be43fa334f
@ -1,4 +1,5 @@
|
||||
#include <QApplication>
|
||||
#include <QTextCodec>
|
||||
#include <QDir>
|
||||
|
||||
#include "maindialog.hpp"
|
||||
@ -29,6 +30,9 @@ int main(int argc, char *argv[])
|
||||
|
||||
QDir::setCurrent(dir.absolutePath());
|
||||
|
||||
// Support non-latin characters
|
||||
QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));
|
||||
|
||||
MainDialog mainWin;
|
||||
|
||||
if (mainWin.setup()) {
|
||||
|
Loading…
Reference in New Issue
Block a user