summaryrefslogtreecommitdiffstats
path: root/doc/html/rangecontrols-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-24 19:37:05 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-24 19:37:05 +0900
commit0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc (patch)
treebe5eda50c23980aa4b44de1e8b2e209c6c02d2d1 /doc/html/rangecontrols-example.html
parent1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (diff)
downloadtqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.tar.gz
tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.zip
Rename text class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/rangecontrols-example.html')
-rw-r--r--doc/html/rangecontrols-example.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/rangecontrols-example.html b/doc/html/rangecontrols-example.html
index aeb32b2d2..5c2d2bd3c 100644
--- a/doc/html/rangecontrols-example.html
+++ b/doc/html/rangecontrols-example.html
@@ -85,7 +85,7 @@ private:
#include &lt;<a href="qhbox-h.html">ntqhbox.h</a>&gt;
#include &lt;<a href="qlcdnumber-h.html">ntqlcdnumber.h</a>&gt;
#include &lt;<a href="qspinbox-h.html">ntqspinbox.h</a>&gt;
-#include &lt;<a href="qlabel-h.html">ntqlabel.h</a>&gt;
+#include &lt;<a href="tqlabel-h.html">tqlabel.h</a>&gt;
#include &lt;<a href="tqstring-h.html">tqstring.h</a>&gt;
#include &lt;<a href="qslider-h.html">ntqslider.h</a>&gt;
#include &lt;<a href="qcheckbox-h.html">ntqcheckbox.h</a>&gt;
@@ -103,18 +103,18 @@ private:
(void)new <a href="tqwidget.html">TQWidget</a>( cell2 );
- <a href="ntqlabel.html">TQLabel</a> *label1 = new <a href="ntqlabel.html">TQLabel</a>( TQString( "Enter a value between\n%1 and %2:" ).arg( -INT_MAX ).arg( INT_MAX ), cell2 );
+ <a href="tqlabel.html">TQLabel</a> *label1 = new <a href="tqlabel.html">TQLabel</a>( TQString( "Enter a value between\n%1 and %2:" ).arg( -INT_MAX ).arg( INT_MAX ), cell2 );
<a name="x1391"></a><a name="x1383"></a> label1-&gt;<a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label1-&gt;<a href="tqwidget.html#sizeHint">sizeHint</a>().height() );
<a href="ntqspinbox.html">TQSpinBox</a> *sb1 = new <a href="ntqspinbox.html">TQSpinBox</a>( -INT_MAX, INT_MAX, 1, cell2 );
<a name="x1390"></a> sb1-&gt;<a href="ntqspinbox.html#setValue">setValue</a>( 0 );
- <a href="ntqlabel.html">TQLabel</a> *label2 = new <a href="ntqlabel.html">TQLabel</a>( "Enter a zoom value:", cell2 );
+ <a href="tqlabel.html">TQLabel</a> *label2 = new <a href="tqlabel.html">TQLabel</a>( "Enter a zoom value:", cell2 );
label2-&gt;<a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label2-&gt;<a href="tqwidget.html#sizeHint">sizeHint</a>().height() );
<a href="ntqspinbox.html">TQSpinBox</a> *sb2 = new <a href="ntqspinbox.html">TQSpinBox</a>( 0, 1000, 10, cell2 );
<a name="x1389"></a> sb2-&gt;<a href="ntqspinbox.html#setSuffix">setSuffix</a>( " %" );
<a name="x1388"></a> sb2-&gt;<a href="ntqspinbox.html#setSpecialValueText">setSpecialValueText</a>( "Automatic" );
- <a href="ntqlabel.html">TQLabel</a> *label3 = new <a href="ntqlabel.html">TQLabel</a>( "Enter a price:", cell2 );
+ <a href="tqlabel.html">TQLabel</a> *label3 = new <a href="tqlabel.html">TQLabel</a>( "Enter a price:", cell2 );
label3-&gt;<a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label3-&gt;<a href="tqwidget.html#sizeHint">sizeHint</a>().height() );
<a href="ntqspinbox.html">TQSpinBox</a> *sb3 = new <a href="ntqspinbox.html">TQSpinBox</a>( 0, INT_MAX, 1, cell2 );
<a name="x1387"></a> sb3-&gt;<a href="ntqspinbox.html#setPrefix">setPrefix</a>( "$" );