From 03bc485016127d419bbbbc3cfb09e21e8754b383 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 30 Nov 2011 12:33:18 -0600 Subject: Initial automated TQt conversion --- example/main.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'example/main.cpp') diff --git a/example/main.cpp b/example/main.cpp index 3c2722c..a24a49f 100644 --- a/example/main.cpp +++ b/example/main.cpp @@ -3,19 +3,19 @@ ** ** Copyright (C) 1992-2000 Trolltech AS. All rights reserved. ** -** This file is part of an example program for Qt. This example +** This file is part of an example program for TQt. This example ** program may be used, distributed and modified without limitation. ** *****************************************************************************/ -#include +#include #include "application.h" int main( int argc, char ** argv ) { - QApplication a( argc, argv ); + TQApplication a( argc, argv ); ApplicationWindow *mw = new ApplicationWindow(); - mw->setCaption( "QScintilla Example - Application" ); + mw->setCaption( "TQScintilla Example - Application" ); mw->show(); - a.connect( &a, SIGNAL(lastWindowClosed()), &a, SLOT(quit()) ); + a.connect( &a, TQT_SIGNAL(lastWindowClosed()), &a, TQT_SLOT(quit()) ); return a.exec(); } -- cgit v1.2.3