From 397b7afa8e3f32268c4454bf4783ac2a5a799658 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 15 Oct 2024 13:05:33 +0900 Subject: Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/dclock-example.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/dclock-example.html') diff --git a/doc/html/dclock-example.html b/doc/html/dclock-example.html index 80941a2ba..0cdfcda25 100644 --- a/doc/html/dclock-example.html +++ b/doc/html/dclock-example.html @@ -193,18 +193,18 @@ void DigitalClock::showTime() *****************************************************************************/ #include "dclock.h" -#include <ntqapplication.h> +#include <tqapplication.h> int main( int argc, char **argv ) { - TQApplication a( argc, argv ); + TQApplication a( argc, argv ); DigitalClock *clock = new DigitalClock; clock->resize( 170, 80 ); - a.setMainWidget( clock ); + a.setMainWidget( clock ); clock->setCaption("TQt Example - Digital Clock"); clock->show(); - return a.exec(); + return a.exec(); } -- cgit v1.2.3