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/checklists-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/checklists-example.html')
-rw-r--r-- | doc/html/checklists-example.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/checklists-example.html b/doc/html/checklists-example.html index 29fd97dd1..8c58cfa8d 100644 --- a/doc/html/checklists-example.html +++ b/doc/html/checklists-example.html @@ -64,7 +64,7 @@ public: protected: <a href="ntqlistview.html">TQListView</a> *lv1, *lv2; - <a href="ntqlabel.html">TQLabel</a> *label; + <a href="tqlabel.html">TQLabel</a> *label; protected slots: void copy1to2(); @@ -91,7 +91,7 @@ protected slots: #include <<a href="qlistview-h.html">ntqlistview.h</a>> #include <<a href="qvbox-h.html">ntqvbox.h</a>> -#include <<a href="qlabel-h.html">ntqlabel.h</a>> +#include <<a href="tqlabel-h.html">tqlabel.h</a>> #include <<a href="tqvaluelist-h.html">tqvaluelist.h</a>> #include <<a href="tqstring-h.html">tqstring.h</a>> #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> @@ -114,7 +114,7 @@ protected slots: vbox1-><a href="ntqlayout.html#setMargin">setMargin</a>( 5 ); // First child: a Label -<a name="x423"></a> vbox1-><a href="qboxlayout.html#addWidget">addWidget</a>( new <a href="ntqlabel.html">TQLabel</a>( "Check some items!", this ) ); +<a name="x423"></a> vbox1-><a href="qboxlayout.html#addWidget">addWidget</a>( new <a href="tqlabel.html">TQLabel</a>( "Check some items!", this ) ); // Second child: the ListView lv1 = new <a href="ntqlistview.html">TQListView</a>( this ); @@ -157,7 +157,7 @@ protected slots: vbox2-><a href="ntqlayout.html#setMargin">setMargin</a>( 5 ); // and another label - vbox2-><a href="qboxlayout.html#addWidget">addWidget</a>( new <a href="ntqlabel.html">TQLabel</a>( "Check one item!", this ) ); + vbox2-><a href="qboxlayout.html#addWidget">addWidget</a>( new <a href="tqlabel.html">TQLabel</a>( "Check one item!", this ) ); // create the second listview lv2 = new <a href="ntqlistview.html">TQListView</a>( this ); @@ -180,7 +180,7 @@ protected slots: tmp-><a href="ntqlayout.html#setMargin">setMargin</a>( 5 ); // and create a label which will be at the right of the window - label = new <a href="ntqlabel.html">TQLabel</a>( "No Item yet...", this ); + label = new <a href="tqlabel.html">TQLabel</a>( "No Item yet...", this ); tmp-><a href="qboxlayout.html#addWidget">addWidget</a>( label ); } @@ -228,7 +228,7 @@ void <a name="f250"></a>CheckLists::copy2to3() // create an iterator which operates on the second ListView <a href="qlistviewitemiterator.html">TQListViewItemIterator</a> it( lv2 ); - label-><a href="ntqlabel.html#setText">setText</a>( "No Item checked" ); + label-><a href="tqlabel.html#setText">setText</a>( "No Item checked" ); // iterate through the second ListView... for ( ; it.<a href="qlistviewitemiterator.html#current">current</a>(); ++it ) @@ -237,7 +237,7 @@ void <a name="f250"></a>CheckLists::copy2to3() // ...if the item is checked... if ( ( (TQCheckListItem*)it.<a href="qlistviewitemiterator.html#current">current</a>() )->isOn() ) // ...set the text of the item to the label - label-><a href="ntqlabel.html#setText">setText</a>( it.<a href="qlistviewitemiterator.html#current">current</a>()->text( 0 ) ); + label-><a href="tqlabel.html#setText">setText</a>( it.<a href="qlistviewitemiterator.html#current">current</a>()->text( 0 ) ); } </pre> |