Added support for non-latin characters, fixes Bug #515

pull/37/head
Pieter van der Kloet 12 years ago
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…
Cancel
Save