summaryrefslogtreecommitdiffstats
path: root/examples/widgets/applicationicon/main.cpp
blob: 8636c0a13b33377ef8f0db19e8e5ea886eee4841 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <QtGui/QApplication>

#include <QtGui/QLabel>


int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    QLabel label(QObject::tr("Hello, world!"));
#if defined(Q_WS_S60)

    label.showMaximized();
#else

    label.show();
#endif

    return a.exec();
}