summaryrefslogtreecommitdiffstats
path: root/tests/manual/qtbug-8933/main.cpp
blob: 841b7c3e67dc36379a697850703698d8140b2bd3 (plain)
1
2
3
4
5
6
7
8
9
10
#include <QtGui/QApplication>
#include "widget.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    Widget w;
    w.show();
    return a.exec();
}