From e6077c30d14e9d662e8843c554db86c0d366d0b6 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 6 Jun 2024 13:44:12 +0900 Subject: Rename str nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/dclock-example.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/html/dclock-example.html') diff --git a/doc/html/dclock-example.html b/doc/html/dclock-example.html index e162bc9f0..2a614d05d 100644 --- a/doc/html/dclock-example.html +++ b/doc/html/dclock-example.html @@ -148,8 +148,8 @@ void DigitalClock::showDate() if ( showDateTimer != -1 ) // already showing date return; TQDate date = TQDate::currentDate(); - TQString s; - s.sprintf( "%2d %2d", date.month(), date.day() ); + TQString s; + s.sprintf( "%2d %2d", date.month(), date.day() ); display( s ); // sets the LCD number/text showDateTimer = startTimer( 2000 ); // keep this state for 2 secs } @@ -172,7 +172,7 @@ void DigitalClock::stopDate() void DigitalClock::showTime() { showingColon = !showingColon; // toggle/blink colon - TQString s = TQTime::currentTime().toString().left(5); + TQString s = TQTime::currentTime().toString().left(5); if ( !showingColon ) s[2] = ' '; if ( s[0] == '0' ) -- cgit v1.2.3