aboutsummaryrefslogtreecommitdiff
path: root/demos/qtstyledialogs/main.cpp
diff options
context:
space:
mode:
authorTomas Junnonen <tomas.junnonen@nokia.com>2010-02-15 14:54:48 +0200
committerTomas Junnonen <tomas.junnonen@nokia.com>2010-02-15 14:54:48 +0200
commit0299123821c6c6367c23f59e135737f32b26c898 (patch)
tree48dcda1537576e0c646b4cfe823e83c2186a6a1e /demos/qtstyledialogs/main.cpp
Changes: First public release
RevBy: TrustMe
Diffstat (limited to 'demos/qtstyledialogs/main.cpp')
-rw-r--r--demos/qtstyledialogs/main.cpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/demos/qtstyledialogs/main.cpp b/demos/qtstyledialogs/main.cpp
new file mode 100644
index 00000000..fd97c863
--- /dev/null
+++ b/demos/qtstyledialogs/main.cpp
@@ -0,0 +1,33 @@
+/***************************************************************************
+**
+** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (directui@nokia.com)
+**
+** This file is part of libdui.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at directui@nokia.com.
+**
+** This library is free software; you can redistribute it and/or
+** modify it under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation
+** and appearing in the file LICENSE.LGPL included in the packaging
+** of this file.
+**
+****************************************************************************/
+
+#include <QApplication>
+#include <QMainWindow>
+
+#include "MainWindow.h"
+
+int main(int argc, char **argv)
+{
+ QApplication app(argc, argv);
+ MainWindow mw;
+ mw.show();
+
+ return app.exec();
+}
+