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/listboxcombo-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/listboxcombo-example.html')
-rw-r--r-- | doc/html/listboxcombo-example.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/listboxcombo-example.html b/doc/html/listboxcombo-example.html index 8b0006a64..d12f9d009 100644 --- a/doc/html/listboxcombo-example.html +++ b/doc/html/listboxcombo-example.html @@ -64,7 +64,7 @@ public: protected: <a href="ntqlistbox.html">TQListBox</a> *lb1, *lb2; - <a href="ntqlabel.html">TQLabel</a> *label1, *label2; + <a href="tqlabel.html">TQLabel</a> *label1, *label2; protected slots: void slotLeft2Right(); @@ -96,7 +96,7 @@ protected slots: #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> #include <<a href="tqstring-h.html">tqstring.h</a>> #include <<a href="tqpixmap-h.html">tqpixmap.h</a>> -#include <<a href="qlabel-h.html">ntqlabel.h</a>> +#include <<a href="tqlabel-h.html">tqlabel.h</a>> #include <<a href="tqimage-h.html">tqimage.h</a>> #include <<a href="tqpainter-h.html">tqpainter.h</a>> #include <<a href="tqstyle-h.html">tqstyle.h</a>> @@ -180,7 +180,7 @@ protected: // Create a non-editable Combobox and a label below... <a href="ntqcombobox.html">TQComboBox</a> *cb1 = new <a href="ntqcombobox.html">TQComboBox</a>( FALSE, box1 ); - label1 = new <a href="ntqlabel.html">TQLabel</a>( "Current Item: Combobox Item 0", box1 ); + label1 = new <a href="tqlabel.html">TQLabel</a>( "Current Item: Combobox Item 0", box1 ); <a name="x1416"></a><a name="x1404"></a> label1-><a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label1-><a href="tqwidget.html#sizeHint">sizeHint</a>().height() * 2 ); <a name="x1401"></a> label1-><a href="ntqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken ); @@ -198,7 +198,7 @@ protected: // Create an editable Combobox and a label below... <a href="ntqcombobox.html">TQComboBox</a> *cb2 = new <a href="ntqcombobox.html">TQComboBox</a>( TRUE, box2 ); - label2 = new <a href="ntqlabel.html">TQLabel</a>( "Current Item: Combobox Item 0", box2 ); + label2 = new <a href="tqlabel.html">TQLabel</a>( "Current Item: Combobox Item 0", box2 ); label2-><a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label2-><a href="tqwidget.html#sizeHint">sizeHint</a>().height() * 2 ); label2-><a href="ntqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken ); @@ -251,7 +251,7 @@ void <a name="f438"></a>ListBoxCombo::slotLeft2Right() void <a name="f439"></a>ListBoxCombo::slotCombo1Activated( const <a href="tqstring.html">TQString</a> &s ) { -<a name="x1403"></a> label1-><a href="ntqlabel.html#setText">setText</a>( TQString( "Current Item: %1" ).arg( s ) ); +<a name="x1403"></a> label1-><a href="tqlabel.html#setText">setText</a>( TQString( "Current Item: %1" ).arg( s ) ); } /* @@ -264,7 +264,7 @@ void <a name="f439"></a>ListBoxCombo::slotCombo1Activated( const <a href="tqstri void <a name="f440"></a>ListBoxCombo::slotCombo2Activated( const <a href="tqstring.html">TQString</a> &s ) { - label2-><a href="ntqlabel.html#setText">setText</a>( TQString( "Current Item: %1" ).arg( s ) ); + label2-><a href="tqlabel.html#setText">setText</a>( TQString( "Current Item: %1" ).arg( s ) ); } </pre> |