summaryrefslogtreecommitdiffstats
path: root/doc/html/checklists-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/checklists-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/checklists-example.html')
-rw-r--r--doc/html/checklists-example.html14
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 &lt;<a href="qlistview-h.html">ntqlistview.h</a>&gt;
#include &lt;<a href="qvbox-h.html">ntqvbox.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="tqvaluelist-h.html">tqvaluelist.h</a>&gt;
#include &lt;<a href="tqstring-h.html">tqstring.h</a>&gt;
#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
@@ -114,7 +114,7 @@ protected slots:
vbox1-&gt;<a href="ntqlayout.html#setMargin">setMargin</a>( 5 );
// First child: a Label
-<a name="x423"></a> vbox1-&gt;<a href="qboxlayout.html#addWidget">addWidget</a>( new <a href="ntqlabel.html">TQLabel</a>( "Check some items!", this ) );
+<a name="x423"></a> vbox1-&gt;<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-&gt;<a href="ntqlayout.html#setMargin">setMargin</a>( 5 );
// and another label
- vbox2-&gt;<a href="qboxlayout.html#addWidget">addWidget</a>( new <a href="ntqlabel.html">TQLabel</a>( "Check one item!", this ) );
+ vbox2-&gt;<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-&gt;<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-&gt;<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-&gt;<a href="ntqlabel.html#setText">setText</a>( "No Item checked" );
+ label-&gt;<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>() )-&gt;isOn() )
// ...set the text of the item to the label
- label-&gt;<a href="ntqlabel.html#setText">setText</a>( it.<a href="qlistviewitemiterator.html#current">current</a>()-&gt;text( 0 ) );
+ label-&gt;<a href="tqlabel.html#setText">setText</a>( it.<a href="qlistviewitemiterator.html#current">current</a>()-&gt;text( 0 ) );
}
</pre>