diff options
author | Markku Luukkainen <markku.luukkainen@digia.com> | 2009-06-10 10:08:47 (GMT) |
---|---|---|
committer | Markku Luukkainen <markku.luukkainen@digia.com> | 2009-06-10 10:08:47 (GMT) |
commit | 39c796e57be1830133e6189abe8f796b6846904f (patch) | |
tree | 9ba292c5d6c9f2fb92a320ba7f2764bc22ed5e28 /examples/widgets/softkeys/main.cpp | |
parent | 5d924cb69ea03921a9b4bc5f701063cf45ded508 (diff) | |
download | Qt-39c796e57be1830133e6189abe8f796b6846904f.zip Qt-39c796e57be1830133e6189abe8f796b6846904f.tar.gz Qt-39c796e57be1830133e6189abe8f796b6846904f.tar.bz2 |
Moved softkeys example to a better place
Diffstat (limited to 'examples/widgets/softkeys/main.cpp')
-rw-r--r-- | examples/widgets/softkeys/main.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/widgets/softkeys/main.cpp b/examples/widgets/softkeys/main.cpp new file mode 100644 index 0000000..a355f93 --- /dev/null +++ b/examples/widgets/softkeys/main.cpp @@ -0,0 +1,21 @@ +/**************************************************************************** +** +** Copyright (C) 2008 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 <QtGui> +#include "softkeys.h" + +int main(int argc, char *argv[]) +{ + QApplication app(argc, argv); + MainWindow mw; + mw.showMaximized(); + return app.exec(); +} |