diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-24 19:37:05 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-24 19:37:05 +0900 |
commit | 0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc (patch) | |
tree | be5eda50c23980aa4b44de1e8b2e209c6c02d2d1 /doc/html/rangecontrols-example.html | |
parent | 1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (diff) | |
download | tqt3-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.html | 8 |
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 <<a href="qhbox-h.html">ntqhbox.h</a>> #include <<a href="qlcdnumber-h.html">ntqlcdnumber.h</a>> #include <<a href="qspinbox-h.html">ntqspinbox.h</a>> -#include <<a href="qlabel-h.html">ntqlabel.h</a>> +#include <<a href="tqlabel-h.html">tqlabel.h</a>> #include <<a href="tqstring-h.html">tqstring.h</a>> #include <<a href="qslider-h.html">ntqslider.h</a>> #include <<a href="qcheckbox-h.html">ntqcheckbox.h</a>> @@ -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-><a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label1-><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-><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-><a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label2-><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-><a href="ntqspinbox.html#setSuffix">setSuffix</a>( " %" ); <a name="x1388"></a> sb2-><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-><a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label3-><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-><a href="ntqspinbox.html#setPrefix">setPrefix</a>( "$" ); |