summaryrefslogtreecommitdiff
path: root/tests/projects/qt/widgetapp_private_slot2/main.cpp
blob: aab39bb8988f6eeeb6f19b8feeebc0f03e8a969b (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    return a.exec();
}