You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.cpp 315B

1234567891011121314
  1. #include "mainwindow.h"
  2. #include <QApplication>
  3. #include <QTextCodec>
  4. #include "options.h"
  5. int main(int argc, char *argv[])
  6. {
  7. QApplication a(argc, argv);
  8. QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));
  9. qApp->setQuitOnLastWindowClosed(false);
  10. MainWindow w;
  11. return a.exec();
  12. }