summaryrefslogtreecommitdiffstats
path: root/doc/html/statistics-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-07-29 12:43:23 +0900
committerMichele Calgaro <[email protected]>2024-07-29 12:43:23 +0900
commitfef846914f8db6dc117e206ef913d519bf6bb33e (patch)
treed6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/html/statistics-example.html
parent8ef4ea451dd81dd66b34ed31aaa631f6df24a192 (diff)
downloadtqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.tar.gz
tqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.zip
Rename basic widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/statistics-example.html')
-rw-r--r--doc/html/statistics-example.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/statistics-example.html b/doc/html/statistics-example.html
index 92b04e059..3a032d538 100644
--- a/doc/html/statistics-example.html
+++ b/doc/html/statistics-example.html
@@ -50,7 +50,7 @@ Another <a href="ntqtable.html">TQTable</a> example.
#define STATISTICS_H
#include &lt;<a href="qtable-h.html">ntqtable.h</a>&gt;
-#include &lt;<a href="qcombobox-h.html">ntqcombobox.h</a>&gt;
+#include &lt;<a href="tqcombobox-h.html">tqcombobox.h</a>&gt;
class TableItem : public <a href="qtableitem.html">TQTableItem</a>
{
@@ -68,7 +68,7 @@ public:
void setText( const <a href="tqstring.html">TQString</a> &amp;s );
private:
- <a href="ntqcombobox.html">TQComboBox</a> *cb;
+ <a href="tqcombobox.html">TQComboBox</a> *cb;
};
@@ -108,7 +108,7 @@ private:
#include &lt;<a href="tqdir-h.html">tqdir.h</a>&gt;
#include &lt;<a href="tqstringlist-h.html">tqstringlist.h</a>&gt;
#include &lt;<a href="qheader-h.html">ntqheader.h</a>&gt;
-#include &lt;<a href="qcombobox-h.html">ntqcombobox.h</a>&gt;
+#include &lt;<a href="tqcombobox-h.html">tqcombobox.h</a>&gt;
#include &lt;stdlib.h&gt;
const char* dirs[] = {
@@ -235,7 +235,7 @@ void <a name="f580"></a>Table::recalcSum( int, int col )
<a name="x2785"></a>TQWidget *ComboItem::<a href="qtableitem.html#createEditor">createEditor</a>() const
{
// create an editor - a combobox in our case
- ( (ComboItem*)this )-&gt;cb = new <a href="ntqcombobox.html">TQComboBox</a>( <a href="qtableitem.html#table">table</a>()-&gt;viewport() );
+ ( (ComboItem*)this )-&gt;cb = new <a href="tqcombobox.html">TQComboBox</a>( <a href="qtableitem.html#table">table</a>()-&gt;viewport() );
TQObject::<a href="tqobject.html#connect">connect</a>( cb, TQ_SIGNAL( activated( int ) ), table(), TQ_SLOT( doValueChanged() ) );
cb-&gt;insertItem( "Yes" );
cb-&gt;insertItem( "No" );