diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-05 19:02:23 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-05 19:02:23 +0900 |
commit | 1f0ce8533cc837aa2d4155b5fc17d2004bed0197 (patch) | |
tree | d62f4174c0e58e1aa895fc71484d068b614cd6de /doc/html/ntqimage.html | |
parent | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (diff) | |
download | tqt-1f0ce853.tar.gz tqt-1f0ce853.zip |
Rename template library nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/ntqimage.html')
-rw-r--r-- | doc/html/ntqimage.html | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/html/ntqimage.html b/doc/html/ntqimage.html index b5b1edfd7..da2d76a9a 100644 --- a/doc/html/ntqimage.html +++ b/doc/html/ntqimage.html @@ -594,8 +594,8 @@ input. over a copy, e.g. <pre> <a href="ntqstringlist.html">TQStringList</a> list = myImage.inputFormatList(); - TQStringList::Iterator it = list.<a href="ntqvaluelist.html#begin">begin</a>(); - while( it != list.<a href="ntqvaluelist.html#end">end</a>() ) { + TQStringList::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); + while( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); ++it; } @@ -747,8 +747,8 @@ output. over a copy, e.g. <pre> <a href="ntqstringlist.html">TQStringList</a> list = myImage.outputFormatList(); - TQStringList::Iterator it = list.<a href="ntqvaluelist.html#begin">begin</a>(); - while( it != list.<a href="ntqvaluelist.html#end">end</a>() ) { + TQStringList::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); + while( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); ++it; } @@ -1009,8 +1009,8 @@ Returns the keywords for which some texts are recorded. over a copy, e.g. <pre> <a href="ntqstringlist.html">TQStringList</a> list = myImage.textKeys(); - TQStringList::Iterator it = list.<a href="ntqvaluelist.html#begin">begin</a>(); - while( it != list.<a href="ntqvaluelist.html#end">end</a>() ) { + TQStringList::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); + while( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); ++it; } @@ -1026,8 +1026,8 @@ recorded. over a copy, e.g. <pre> <a href="ntqstringlist.html">TQStringList</a> list = myImage.textLanguages(); - TQStringList::Iterator it = list.<a href="ntqvaluelist.html#begin">begin</a>(); - while( it != list.<a href="ntqvaluelist.html#end">end</a>() ) { + TQStringList::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); + while( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); ++it; } @@ -1035,16 +1035,16 @@ over a copy, e.g. <p> <p>See also <a href="#textList">textList</a>(), <a href="#text">text</a>(), <a href="#setText">setText</a>(), and <a href="#textKeys">textKeys</a>(). -<h3 class=fn><a href="ntqvaluelist.html">TQValueList</a><TQImageTextKeyLang> <a name="textList"></a>TQImage::textList () const +<h3 class=fn><a href="tqvaluelist.html">TQValueList</a><TQImageTextKeyLang> <a name="textList"></a>TQImage::textList () const </h3> Returns a list of TQImageTextKeyLang objects that enumerate all the texts key/language pairs set by <a href="#setText">setText</a>() for this image. <p> Note that if you want to iterate over the list, you should iterate over a copy, e.g. <pre> - <a href="ntqvaluelist.html">TQValueList</a><TQImageTextKeyLang> list = myImage.textList(); - TQValueList<TQImageTextKeyLang>::Iterator it = list.<a href="ntqvaluelist.html#begin">begin</a>(); - while( it != list.<a href="ntqvaluelist.html#end">end</a>() ) { + <a href="tqvaluelist.html">TQValueList</a><TQImageTextKeyLang> list = myImage.textList(); + TQValueList<TQImageTextKeyLang>::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); + while( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); ++it; } |