summaryrefslogtreecommitdiffstats
path: root/doc/html/qfd-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-06-06 13:44:12 +0900
committerMichele Calgaro <[email protected]>2024-06-06 13:52:29 +0900
commite6077c30d14e9d662e8843c554db86c0d366d0b6 (patch)
tree672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/qfd-example.html
parent8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff)
downloadtqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz
tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/qfd-example.html')
-rw-r--r--doc/html/qfd-example.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/qfd-example.html b/doc/html/qfd-example.html
index e4e90a68a..b4c115b68 100644
--- a/doc/html/qfd-example.html
+++ b/doc/html/qfd-example.html
@@ -62,7 +62,7 @@ public:
<a href="ntqsize.html">TQSize</a> sizeHint() const;
signals:
- void fontInformation(const <a href="ntqstring.html">TQString</a>&amp;);
+ void fontInformation(const <a href="tqstring.html">TQString</a>&amp;);
public slots:
void setRow(int);
@@ -186,7 +186,7 @@ TQSize <a name="f532"></a>FontRowTable::cellSize() const
r &lt; 0 ? rnegative : rpositive);
}
}
- <a href="ntqstring.html">TQString</a> s;
+ <a href="tqstring.html">TQString</a> s;
s += ch;
p.<a href="ntqpainter.html#setPen">setPen</a>(TQPen(TQt::black));
p.<a href="ntqpainter.html#drawText">drawText</a>(x,y,s);
@@ -202,7 +202,7 @@ void <a name="f533"></a>FontRowTable::setRow(int r)
<a href="ntqfontmetrics.html">TQFontMetrics</a> fm = <a href="tqwidget.html#fontMetrics">fontMetrics</a>();
<a href="ntqfontinfo.html">TQFontInfo</a> fi = <a href="tqwidget.html#fontInfo">fontInfo</a>();
- <a href="ntqstring.html">TQString</a> str = TQString("%1 %2pt%3%4 mLB=%5 mRB=%6 mW=%7")
+ <a href="tqstring.html">TQString</a> str = TQString("%1 %2pt%3%4 mLB=%5 mRB=%6 mW=%7")
<a name="x1983"></a> .arg(fi.<a href="ntqfontinfo.html#family">family</a>())
<a name="x1985"></a> .arg(fi.<a href="ntqfontinfo.html#pointSize">pointSize</a>())
<a name="x1982"></a> .arg(fi.<a href="ntqfontinfo.html#bold">bold</a>() ? " bold" : "")
@@ -239,8 +239,8 @@ void <a name="f534"></a>FontRowTable::chooseFont()
<a name="x2009"></a> <a href="tqobject.html#connect">connect</a>(row,TQ_SIGNAL(<a href="ntqspinbox.html#valueChanged">valueChanged</a>(int)),table,TQ_SLOT(setRow(int)));
<a href="tqobject.html#connect">connect</a>(fontbutton, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), table, TQ_SLOT(chooseFont()));
- <a href="tqobject.html#connect">connect</a>(table,TQ_SIGNAL(fontInformation(const <a href="ntqstring.html">TQString</a>&amp;)),
- <a href="ntqmainwindow.html#statusBar">statusBar</a>(),TQ_SLOT(message(const <a href="ntqstring.html">TQString</a>&amp;)));
+ <a href="tqobject.html#connect">connect</a>(table,TQ_SIGNAL(fontInformation(const <a href="tqstring.html">TQString</a>&amp;)),
+ <a href="ntqmainwindow.html#statusBar">statusBar</a>(),TQ_SLOT(message(const <a href="tqstring.html">TQString</a>&amp;)));
table-&gt;setRow(0);
<a href="ntqmainwindow.html#setCentralWidget">setCentralWidget</a>(table);
}