blob: 32e22ae697ef084b26340bf87d2129fdbd9fbce0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Qt Software Information (qt-info@nokia.com)
**
** This file is part of the $MODULE$ of the Qt Toolkit.
**
** $TROLLTECH_DUAL_LICENSE$
**
****************************************************************************/
#include <QApplication>
#include "desktopwidget.h"
int main(int argc, char *argv[])
{
Q_INIT_RESOURCE(desktopservices);
QApplication app(argc, argv);
DesktopWidget* myWidget = new DesktopWidget(0);
myWidget->showMaximized();
return app.exec();
}
// End of file
|