summaryrefslogtreecommitdiffstats
path: root/doc/html/table-small-table-demo-main-cpp.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
commitfef846914f8db6dc117e206ef913d519bf6bb33e (patch)
treed6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/html/table-small-table-demo-main-cpp.html
parent8ef4ea451dd81dd66b34ed31aaa631f6df24a192 (diff)
downloadtqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.tar.gz
tqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.zip
Rename basic widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/table-small-table-demo-main-cpp.html')
-rw-r--r--doc/html/table-small-table-demo-main-cpp.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/table-small-table-demo-main-cpp.html b/doc/html/table-small-table-demo-main-cpp.html
index fce5b599d..7d224c51f 100644
--- a/doc/html/table-small-table-demo-main-cpp.html
+++ b/doc/html/table-small-table-demo-main-cpp.html
@@ -79,12 +79,12 @@ int main( int argc, char **argv )
comboEntries &lt;&lt; "one" &lt;&lt; "two" &lt;&lt; "three" &lt;&lt; "four";
for ( int i = 0; i &lt; numRows; ++i ){
- <a href="qcombotableitem.html">TQComboTableItem</a> * item = new <a href="qcombotableitem.html">TQComboTableItem</a>( &amp;table, comboEntries, FALSE );
-<a name="x2797"></a> item-&gt;<a href="qcombotableitem.html#setCurrentItem">setCurrentItem</a>( i % 4 );
+ <a href="tqcombotableitem.html">TQComboTableItem</a> * item = new <a href="tqcombotableitem.html">TQComboTableItem</a>( &amp;table, comboEntries, FALSE );
+<a name="x2797"></a> item-&gt;<a href="tqcombotableitem.html#setCurrentItem">setCurrentItem</a>( i % 4 );
<a name="x2803"></a> table.<a href="ntqtable.html#setItem">setItem</a>( i, 5, item );
}
for ( int j = 0; j &lt; numRows; ++j )
- table.<a href="ntqtable.html#setItem">setItem</a>( j, 1, new <a href="qchecktableitem.html">TQCheckTableItem</a>( &amp;table, "Check me" ) );
+ table.<a href="ntqtable.html#setItem">setItem</a>( j, 1, new <a href="tqchecktableitem.html">TQCheckTableItem</a>( &amp;table, "Check me" ) );
app.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &amp;table );
table.<a href="tqwidget.html#show">show</a>();