From a159579b03afcfca0b7193a0d934c79a47d62656 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 1 Feb 2013 17:32:43 -0600 Subject: Fix prior commit --- examples/checklists/main.cpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 examples/checklists/main.cpp (limited to 'examples/checklists/main.cpp') diff --git a/examples/checklists/main.cpp b/examples/checklists/main.cpp new file mode 100644 index 000000000..65f368348 --- /dev/null +++ b/examples/checklists/main.cpp @@ -0,0 +1,24 @@ +/**************************************************************************** +** +** 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 + +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(); +} -- cgit v1.2.3