tree changes

This commit is contained in:
2020-08-19 16:22:10 +03:00
parent 76d9604282
commit d0148bf460
356 changed files with 5334 additions and 6298 deletions

View File

@@ -0,0 +1,13 @@
#include <QApplication>
#include "piintrospector.h"
int main(int argc, char * argv[]) {
QApplication a(argc, argv);
#if QT_VERSION >= 0x050000
a.setAttribute(Qt::AA_UseHighDpiPixmaps, true);
#endif
QPIIntrospector w;
w.show();
return a.exec();
}