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/tqasciidict.doc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'doc/tqasciidict.doc') diff --git a/doc/tqasciidict.doc b/doc/tqasciidict.doc index 07234c504..e3ae6ca00 100644 --- a/doc/tqasciidict.doc +++ b/doc/tqasciidict.doc @@ -64,14 +64,14 @@ Example: \code - TQAsciiDict fields; // char* keys, QLineEdit* values - fields.insert( "forename", new QLineEdit( this ) ); - fields.insert( "surname", new QLineEdit( this ) ); + TQAsciiDict fields; // char* keys, TQLineEdit* values + fields.insert( "forename", new TQLineEdit( this ) ); + fields.insert( "surname", new TQLineEdit( this ) ); fields["forename"]->setText( "Homer" ); fields["surname"]->setText( "Simpson" ); - TQAsciiDictIterator it( fields ); // See TQAsciiDictIterator + TQAsciiDictIterator it( fields ); // See TQAsciiDictIterator for( ; it.current(); ++it ) cout << it.currentKey() << ": " << it.current()->text() << endl; cout << endl; @@ -350,16 +350,16 @@ Example: \code - TQAsciiDict fields; - fields.insert( "forename", new QLineEdit( this ) ); - fields.insert( "surname", new QLineEdit( this ) ); - fields.insert( "age", new QLineEdit( this ) ); + TQAsciiDict fields; + fields.insert( "forename", new TQLineEdit( this ) ); + fields.insert( "surname", new TQLineEdit( this ) ); + fields.insert( "age", new TQLineEdit( this ) ); fields["forename"]->setText( "Homer" ); fields["surname"]->setText( "Simpson" ); fields["age"]->setText( "45" ); - TQAsciiDictIterator it( fields ); + TQAsciiDictIterator it( fields ); for( ; it.current(); ++it ) cout << it.currentKey() << ": " << it.current()->text() << endl; cout << endl; -- cgit v1.2.1