tree changes
This commit is contained in:
13
piqt/utils/pidumper/pidumper_main.cpp
Normal file
13
piqt/utils/pidumper/pidumper_main.cpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#include <QApplication>
|
||||
#include "pidumper.h"
|
||||
|
||||
|
||||
int main(int argc, char * argv[]) {
|
||||
QApplication a(argc, argv);
|
||||
#if QT_VERSION >= 0x050000
|
||||
a.setAttribute(Qt::AA_UseHighDpiPixmaps, true);
|
||||
#endif
|
||||
PIDumper w;
|
||||
w.show();
|
||||
return a.exec();
|
||||
}
|
||||
Reference in New Issue
Block a user