summaryrefslogtreecommitdiffstats
path: root/examples/listbox/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/listbox/main.cpp')
-rw-r--r--examples/listbox/main.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/listbox/main.cpp b/examples/listbox/main.cpp
new file mode 100644
index 000000000..0e3c7ad3b
--- /dev/null
+++ b/examples/listbox/main.cpp
@@ -0,0 +1,23 @@
+/****************************************************************************
+**
+** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
+**
+** This file is part of an example program for TQt. This example
+** program may be used, distributed and modified without limitation.
+**
+*****************************************************************************/
+
+#include "listbox.h"
+#include <qapplication.h>
+
+int main( int argc, char **argv )
+{
+ TQApplication a( argc, argv );
+
+ ListBoxDemo t;
+ t.setCaption( "TQt Example - Listbox" );
+ a.setMainWidget( &t );
+ t.show();
+
+ return a.exec();
+}