summaryrefslogtreecommitdiffstats
path: root/examples/chectdelists/main.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-02-01 17:25:37 -0600
committerTimothy Pearson <[email protected]>2013-02-01 17:25:37 -0600
commit05d2fcdc9265d1ee8b35899e300bf1ddf90c97de (patch)
treee6781d90e4496ff287b4e9c631b8364d398eb7cb /examples/chectdelists/main.cpp
parentd3e87ed4a07c97c013fb5b50f91db6092cf6fe3f (diff)
downloadqt3-05d2fcdc9265d1ee8b35899e300bf1ddf90c97de.tar.gz
qt3-05d2fcdc9265d1ee8b35899e300bf1ddf90c97de.zip
Fix FTBFS
Diffstat (limited to 'examples/chectdelists/main.cpp')
-rw-r--r--examples/chectdelists/main.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/chectdelists/main.cpp b/examples/chectdelists/main.cpp
new file mode 100644
index 0000000..2aa2559
--- /dev/null
+++ b/examples/chectdelists/main.cpp
@@ -0,0 +1,24 @@
+/****************************************************************************
+**
+** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
+**
+** This file is part of an example program for Qt. This example
+** program may be used, distributed and modified without limitation.
+**
+*****************************************************************************/
+
+#include "checklists.h"
+#include <qapplication.h>
+
+int main( int argc, char **argv )
+{
+ QApplication a( argc, argv );
+
+ CheckLists checklists;
+ checklists.resize( 650, 350 );
+ checklists.setCaption( "Qt Example - CheckLists" );
+ a.setMainWidget( &checklists );
+ checklists.show();
+
+ return a.exec();
+}