summaryrefslogtreecommitdiffstats
path: root/doc/html/sql-overview-table4-main-cpp.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:07:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:22:42 +0900
commit8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch)
treeb95884617b9a37accc843676d5d42be4116a3f54 /doc/html/sql-overview-table4-main-cpp.html
parent68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff)
downloadtqt-8ac0e970.tar.gz
tqt-8ac0e970.zip
Rename ntqwidget* related files to equivalent tqwidget*
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.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/sql-overview-table4-main-cpp.html b/doc/html/sql-overview-table4-main-cpp.html
index 4337617d8..2ee9b282b 100644
--- a/doc/html/sql-overview-table4-main-cpp.html
+++ b/doc/html/sql-overview-table4-main-cpp.html
@@ -45,7 +45,7 @@ body { background: #ffffff; color: black; }
#include "main.h"
-<a name="f12"></a>StatusPicker::StatusPicker( <a href="ntqwidget.html">TQWidget</a> *parent, const char *name )
+<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="tqsqlcursor.html">TQSqlCursor</a> cur( "status" );
@@ -99,10 +99,10 @@ void CustomTable::<a href="tqdatatable.html#paintField">paintField</a>( <a href=
TQWidget *CustomSqlEditorFactory::<a href="tqsqleditorfactory.html#createEditor">createEditor</a>(
- <a href="ntqwidget.html">TQWidget</a> *parent, const <a href="tqsqlfield.html">TQSqlField</a> *field )
+ <a href="tqwidget.html">TQWidget</a> *parent, const <a href="tqsqlfield.html">TQSqlField</a> *field )
{
if ( field-&gt;<a href="tqsqlfield.html#name">name</a>() == "statusid" ) {
- <a href="ntqwidget.html">TQWidget</a> *editor = new StatusPicker( parent );
+ <a href="tqwidget.html">TQWidget</a> *editor = new StatusPicker( parent );
return editor;
}
@@ -135,7 +135,7 @@ int main( int argc, char *argv[] )
staffTable-&gt;<a href="tqdatatable.html#setSort">setSort</a>( order );
staffTable-&gt;<a href="tqdatatable.html#refresh">refresh</a>();
- staffTable-&gt;<a href="ntqwidget.html#show">show</a>();
+ staffTable-&gt;<a href="tqwidget.html#show">show</a>();
return app.<a href="ntqapplication.html#exec">exec</a>();
}