From fef846914f8db6dc117e206ef913d519bf6bb33e Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 29 Jul 2024 12:43:23 +0900 Subject: Rename basic widget nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/dclock-example.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/html/dclock-example.html') diff --git a/doc/html/dclock-example.html b/doc/html/dclock-example.html index e33951470..3351f25e1 100644 --- a/doc/html/dclock-example.html +++ b/doc/html/dclock-example.html @@ -50,10 +50,10 @@ and date. #ifndef DCLOCK_H #define DCLOCK_H -#include <ntqlcdnumber.h> +#include <tqlcdnumber.h> -class DigitalClock : public TQLCDNumber // digital clock widget +class DigitalClock : public TQLCDNumber // digital clock widget { TQ_OBJECT public: @@ -100,7 +100,7 @@ private: // internal data // DigitalClock::DigitalClock( TQWidget *parent, const char *name ) - : TQLCDNumber( parent, name ) + : TQLCDNumber( parent, name ) { showingColon = FALSE; setFrameStyle( TQFrame::Panel | TQFrame::Raised ); @@ -150,7 +150,7 @@ void DigitalClock::showDate() TQDate date = TQDate::currentDate(); TQString s; s.sprintf( "%2d %2d", date.month(), date.day() ); - display( s ); // sets the LCD number/text + display( s ); // sets the LCD number/text showDateTimer = startTimer( 2000 ); // keep this state for 2 secs } @@ -177,7 +177,7 @@ void DigitalClock::showTime() s[2] = ' '; if ( s[0] == '0' ) s[0] = ' '; - display( s ); // set LCD number/text + display( s ); // set LCD number/text } -- cgit v1.2.3