summaryrefslogtreecommitdiff
path: root/tests/system/suite_tools/tst_codepasting/testdata/main-prepasted.cpp
blob: 52b2c4914ea13c233a569c20aad75fbb1eda5da4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// tst_codepasting 2017-05-11 10:18:48.025820
// tst_codepasting 2017-05-11 10:18:45.661681
#include "mainwindow.h"
#include <QApplication>

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

    return a.exec();
}