summaryrefslogtreecommitdiffstats
path: root/examples/checklists/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
commitac037fd7970c8bc4f3a50dda06589016a1190af7 (patch)
treedb5445cc468b218b74292170cccb4a55c60f806d /examples/checklists/main.cpp
parentb283cf865c1a4cc886280937ea9c78271418ac3a (diff)
downloadtqt3-ac037fd7970c8bc4f3a50dda06589016a1190af7.tar.gz
tqt3-ac037fd7970c8bc4f3a50dda06589016a1190af7.zip
Fix FTBFS
Diffstat (limited to 'examples/checklists/main.cpp')
-rw-r--r--examples/checklists/main.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/examples/checklists/main.cpp b/examples/checklists/main.cpp
deleted file mode 100644
index 65f368348..000000000
--- a/examples/checklists/main.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-/****************************************************************************
-**
-** 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 "checklists.h"
-#include <ntqapplication.h>
-
-int main( int argc, char **argv )
-{
- TQApplication a( argc, argv );
-
- CheckLists checklists;
- checklists.resize( 650, 350 );
- checklists.setCaption( "TQt Example - CheckLists" );
- a.setMainWidget( &checklists );
- checklists.show();
-
- return a.exec();
-}