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/sql-overview-custom1-main-cpp.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/html/sql-overview-custom1-main-cpp.html') diff --git a/doc/html/sql-overview-custom1-main-cpp.html b/doc/html/sql-overview-custom1-main-cpp.html index 6091f17c5..030691db7 100644 --- a/doc/html/sql-overview-custom1-main-cpp.html +++ b/doc/html/sql-overview-custom1-main-cpp.html @@ -48,20 +48,20 @@ body { background: #ffffff; color: black; } CustomEdit::CustomEdit( TQWidget *parent, const char *name ) : TQLineEdit( parent, name ) { - connect( this, TQ_SIGNAL(textChanged(const TQString &)), - this, TQ_SLOT(changed(const TQString &)) ); + connect( this, TQ_SIGNAL(textChanged(const TQString &)), + this, TQ_SLOT(changed(const TQString &)) ); } -void CustomEdit::changed( const TQString &line ) +void CustomEdit::changed( const TQString &line ) { setUpperLine( line ); } -void CustomEdit::setUpperLine( const TQString &line ) +void CustomEdit::setUpperLine( const TQString &line ) { - upperLineText = line.upper(); + upperLineText = line.upper(); setText( upperLineText ); } -- cgit v1.2.3