diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-29 12:43:23 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-29 12:43:23 +0900 |
commit | fef846914f8db6dc117e206ef913d519bf6bb33e (patch) | |
tree | d6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/html/tqptrdictiterator.html | |
parent | 8ef4ea451dd81dd66b34ed31aaa631f6df24a192 (diff) | |
download | tqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.tar.gz tqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.zip |
Rename basic widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqptrdictiterator.html')
-rw-r--r-- | doc/html/tqptrdictiterator.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/tqptrdictiterator.html b/doc/html/tqptrdictiterator.html index 857a2e7a4..1d8557ec3 100644 --- a/doc/html/tqptrdictiterator.html +++ b/doc/html/tqptrdictiterator.html @@ -62,12 +62,12 @@ iterator that operates on TQPtrDict<X> (dictionary of X*). <pre> <a href="tqptrdict.html">TQPtrDict</a><char> fields; - <a href="ntqlineedit.html">TQLineEdit</a> *le1 = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); - le1-><a href="ntqlineedit.html#setText">setText</a>( "Simpson" ); - <a href="ntqlineedit.html">TQLineEdit</a> *le2 = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); - le2-><a href="ntqlineedit.html#setText">setText</a>( "Homer" ); - <a href="ntqlineedit.html">TQLineEdit</a> *le3 = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); - le3-><a href="ntqlineedit.html#setText">setText</a>( "45" ); + <a href="tqlineedit.html">TQLineEdit</a> *le1 = new <a href="tqlineedit.html">TQLineEdit</a>( this ); + le1-><a href="tqlineedit.html#setText">setText</a>( "Simpson" ); + <a href="tqlineedit.html">TQLineEdit</a> *le2 = new <a href="tqlineedit.html">TQLineEdit</a>( this ); + le2-><a href="tqlineedit.html#setText">setText</a>( "Homer" ); + <a href="tqlineedit.html">TQLineEdit</a> *le3 = new <a href="tqlineedit.html">TQLineEdit</a>( this ); + le3-><a href="tqlineedit.html#setText">setText</a>( "45" ); fields.<a href="tqptrdict.html#insert">insert</a>( le1, "Surname" ); fields.<a href="tqptrdict.html#insert">insert</a>( le2, "Forename" ); @@ -75,8 +75,8 @@ iterator that operates on TQPtrDict<X> (dictionary of X*). TQPtrDictIterator<char> it( fields ); for( ; it.<a href="#current">current</a>(); ++it ) { - <a href="ntqlineedit.html">TQLineEdit</a> *le = (TQLineEdit)it.<a href="#currentKey">currentKey</a>(); - cout << it.<a href="#current">current</a>() << ": " << le-><a href="ntqlineedit.html#text">text</a>() << endl; + <a href="tqlineedit.html">TQLineEdit</a> *le = (TQLineEdit)it.<a href="#currentKey">currentKey</a>(); + cout << it.<a href="#current">current</a>() << ": " << le-><a href="tqlineedit.html#text">text</a>() << endl; } cout << endl; |