15 lines
316 B
C++
15 lines
316 B
C++
|
#include "FTPTrans.h"
|
||
|
#include <QtWidgets/QApplication>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
||
|
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
||
|
#endif
|
||
|
QApplication a(argc, argv);
|
||
|
a.setStyle("windows xp");
|
||
|
FTPTrans w;
|
||
|
w.show();
|
||
|
return a.exec();
|
||
|
}
|