summaryrefslogtreecommitdiffstats
path: root/doc/html/sql-overview-table4-main-cpp.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/sql-overview-table4-main-cpp.html')
-rw-r--r--doc/html/sql-overview-table4-main-cpp.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/sql-overview-table4-main-cpp.html b/doc/html/sql-overview-table4-main-cpp.html
index dc5ab08f6..79acf6461 100644
--- a/doc/html/sql-overview-table4-main-cpp.html
+++ b/doc/html/sql-overview-table4-main-cpp.html
@@ -46,14 +46,14 @@ body { background: #ffffff; color: black; }
<a name="f12"></a>StatusPicker::StatusPicker( <a href="tqwidget.html">TQWidget</a> *parent, const char *name )
- : <a href="ntqcombobox.html">TQComboBox</a>( parent, name )
+ : <a href="tqcombobox.html">TQComboBox</a>( parent, name )
{
<a href="tqsqlcursor.html">TQSqlCursor</a> cur( "status" );
cur.<a href="tqsqlcursor.html#select">select</a>( cur.<a href="tqsqlcursor.html#index">index</a>( "name" ) );
int i = 0;
while ( cur.<a href="tqsqlquery.html#next">next</a>() ) {
- <a href="ntqcombobox.html#insertItem">insertItem</a>( cur.<a href="tqsqlquery.html#value">value</a>( "name" ).toString(), i );
+ <a href="tqcombobox.html#insertItem">insertItem</a>( cur.<a href="tqsqlquery.html#value">value</a>( "name" ).toString(), i );
index2id[i] = cur.<a href="tqsqlquery.html#value">value</a>( "id" ).toInt();
i++;
}