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~ 262B

12345678910111213
  1. #include "widget.h"
  2. #include <QApplication>
  3. #include "epimafia.h"
  4. int main(int argc, char *argv[])
  5. {
  6. QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));
  7. QApplication a(argc, argv);
  8. Widget w;
  9. w.show();
  10. return a.exec();
  11. }