summaryrefslogtreecommitdiffstats
path: root/doc/html/tqfontdatabase.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-15 13:05:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-10-22 10:05:58 +0900
commit397b7afa8e3f32268c4454bf4783ac2a5a799658 (patch)
tree0b41c33e457556bd2b9371788ddbce25263f00d6 /doc/html/tqfontdatabase.html
parent755d46927cc6a5719e695aeb8133be6897de62d8 (diff)
downloadtqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.tar.gz
tqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.zip
Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqfontdatabase.html')
-rw-r--r--doc/html/tqfontdatabase.html8
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 &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
+#include &lt;<a href="tqapplication-h.html">tqapplication.h</a>&gt;
#include &lt;<a href="tqfontdatabase-h.html">tqfontdatabase.h</a>&gt;
#include &lt;else.h&gt;
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;