diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-29 12:43:23 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-29 12:43:23 +0900 |
commit | fef846914f8db6dc117e206ef913d519bf6bb33e (patch) | |
tree | d6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/html/sql-overview-table4-main-cpp.html | |
parent | 8ef4ea451dd81dd66b34ed31aaa631f6df24a192 (diff) | |
download | tqt3-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/sql-overview-table4-main-cpp.html')
-rw-r--r-- | doc/html/sql-overview-table4-main-cpp.html | 4 |
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++; } |