diff options
Diffstat (limited to 'doc/html/sql-overview-table3-main-cpp.html')
-rw-r--r-- | doc/html/sql-overview-table3-main-cpp.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/sql-overview-table3-main-cpp.html b/doc/html/sql-overview-table3-main-cpp.html index 987f6ff0c..338d908e2 100644 --- a/doc/html/sql-overview-table3-main-cpp.html +++ b/doc/html/sql-overview-table3-main-cpp.html @@ -46,14 +46,14 @@ body { background: #ffffff; color: black; } #include <<a href="tqdatatable-h.html">tqdatatable.h</a>> <a name="f9"></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++; } |