diff options
author | Michele Calgaro <[email protected]> | 2024-10-15 13:05:33 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-10-22 10:05:58 +0900 |
commit | 397b7afa8e3f32268c4454bf4783ac2a5a799658 (patch) | |
tree | 0b41c33e457556bd2b9371788ddbce25263f00d6 /doc/html/tqfontdatabase.html | |
parent | 755d46927cc6a5719e695aeb8133be6897de62d8 (diff) | |
download | tqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.tar.gz tqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.zip |
Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/tqfontdatabase.html')
-rw-r--r-- | doc/html/tqfontdatabase.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tqfontdatabase.html b/doc/html/tqfontdatabase.html index 21b488012..8f1579ed4 100644 --- a/doc/html/tqfontdatabase.html +++ b/doc/html/tqfontdatabase.html @@ -103,18 +103,18 @@ description of a <a href="tqfont.html#Script-enum">script</a> using <a href="#scriptSample">scriptSample</a>(). <p> Example: <pre> -#include <<a href="qapplication-h.html">ntqapplication.h</a>> +#include <<a href="tqapplication-h.html">tqapplication.h</a>> #include <<a href="tqfontdatabase-h.html">tqfontdatabase.h</a>> #include <else.h> int main( int argc, char **argv ) { - <a href="ntqapplication.html">TQApplication</a> app( argc, argv ); + <a href="tqapplication.html">TQApplication</a> app( argc, argv ); TQFontDatabase fdb; <a href="tqstringlist.html">TQStringList</a> families = fdb.<a href="#families">families</a>(); for ( TQStringList::Iterator f = families.<a href="tqvaluelist.html#begin">begin</a>(); f != families.<a href="tqvaluelist.html#end">end</a>(); ++f ) { <a href="tqstring.html">TQString</a> family = *f; - <a href="ntqapplication.html#qDebug">tqDebug</a>( family ); + <a href="tqapplication.html#qDebug">tqDebug</a>( family ); <a href="tqstringlist.html">TQStringList</a> styles = fdb.<a href="#styles">styles</a>( family ); for ( TQStringList::Iterator s = styles.<a href="tqvaluelist.html#begin">begin</a>(); s != styles.<a href="tqvaluelist.html#end">end</a>(); ++s ) { <a href="tqstring.html">TQString</a> style = *s; @@ -125,7 +125,7 @@ int main( int argc, char **argv ) dstyle += TQString::<a href="tqstring.html#number">number</a>( *points ) + " "; } dstyle = dstyle.<a href="tqstring.html#left">left</a>( dstyle.<a href="tqstring.html#length">length</a>() - 1 ) + ")"; - <a href="ntqapplication.html#qDebug">tqDebug</a>( dstyle ); + <a href="tqapplication.html#qDebug">tqDebug</a>( dstyle ); } } return 0; |