diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:44:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:52:29 +0900 |
commit | e6077c30d14e9d662e8843c554db86c0d366d0b6 (patch) | |
tree | 672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/statistics-example.html | |
parent | 8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff) | |
download | tqt-e6077c30.tar.gz tqt-e6077c30.zip |
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/statistics-example.html')
-rw-r--r-- | doc/html/statistics-example.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/statistics-example.html b/doc/html/statistics-example.html index a22fe1dcb..5a6c43d7b 100644 --- a/doc/html/statistics-example.html +++ b/doc/html/statistics-example.html @@ -55,7 +55,7 @@ Another <a href="ntqtable.html">TQTable</a> example. class TableItem : public <a href="qtableitem.html">TQTableItem</a> { public: - TableItem( <a href="ntqtable.html">TQTable</a> *t, EditType et, const <a href="ntqstring.html">TQString</a> &txt ) : <a href="qtableitem.html">TQTableItem</a>( t, et, txt ) {} + TableItem( <a href="ntqtable.html">TQTable</a> *t, EditType et, const <a href="tqstring.html">TQString</a> &txt ) : <a href="qtableitem.html">TQTableItem</a>( t, et, txt ) {} void paint( <a href="ntqpainter.html">TQPainter</a> *p, const <a href="qcolorgroup.html">TQColorGroup</a> &cg, const <a href="ntqrect.html">TQRect</a> &cr, bool selected ); }; @@ -65,7 +65,7 @@ public: ComboItem( <a href="ntqtable.html">TQTable</a> *t, EditType et ); <a href="tqwidget.html">TQWidget</a> *createEditor() const; void setContentFromEditor( <a href="tqwidget.html">TQWidget</a> *w ); - void setText( const <a href="ntqstring.html">TQString</a> &s ); + void setText( const <a href="tqstring.html">TQString</a> &s ); private: <a href="ntqcombobox.html">TQComboBox</a> *cb; @@ -106,7 +106,7 @@ private: #include "statistics.h" #include <<a href="qdir-h.html">ntqdir.h</a>> -#include <<a href="qstringlist-h.html">ntqstringlist.h</a>> +#include <<a href="tqstringlist-h.html">tqstringlist.h</a>> #include <<a href="qheader-h.html">ntqheader.h</a>> #include <<a href="qcombobox-h.html">ntqcombobox.h</a>> #include <stdlib.h> @@ -142,12 +142,12 @@ const char* dirs[] = { void <a name="f579"></a>Table::initTable() { // read all the TQt source and header files into a list - <a href="ntqstringlist.html">TQStringList</a> all; + <a href="tqstringlist.html">TQStringList</a> all; int i = 0; - <a href="ntqstring.html">TQString</a> srcdir( "../../../src/" ); + <a href="tqstring.html">TQString</a> srcdir( "../../../src/" ); while ( dirs[ i ] ) { <a href="ntqdir.html">TQDir</a> dir( srcdir + dirs[ i ] ); -<a name="x2780"></a> <a href="ntqstringlist.html">TQStringList</a> lst = dir.<a href="ntqdir.html#entryList">entryList</a>( "*.cpp; *.h" ); +<a name="x2780"></a> <a href="tqstringlist.html">TQStringList</a> lst = dir.<a href="ntqdir.html#entryList">entryList</a>( "*.cpp; *.h" ); <a name="x2791"></a><a name="x2789"></a> for ( TQStringList::Iterator it = lst.<a href="tqvaluelist.html#begin">begin</a>(); it != lst.<a href="tqvaluelist.html#end">end</a>(); ++it ) { if ( ( *it ).contains( "moc" ) ) continue; @@ -254,7 +254,7 @@ void <a name="f580"></a>Table::recalcSum( int, int col ) TQTableItem::<a href="qtableitem.html#setContentFromEditor">setContentFromEditor</a>( w ); } -<a name="x2788"></a>void ComboItem::<a href="qtableitem.html#setText">setText</a>( const <a href="ntqstring.html">TQString</a> &s ) +<a name="x2788"></a>void ComboItem::<a href="qtableitem.html#setText">setText</a>( const <a href="tqstring.html">TQString</a> &s ) { if ( cb ) { // initialize the combobox from the text |