summaryrefslogtreecommitdiffstats
path: root/doc/html/sql-overview-table3-main-cpp.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/sql-overview-table3-main-cpp.html')
-rw-r--r--doc/html/sql-overview-table3-main-cpp.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/sql-overview-table3-main-cpp.html b/doc/html/sql-overview-table3-main-cpp.html
index 0938101ac..ffae91a7e 100644
--- a/doc/html/sql-overview-table3-main-cpp.html
+++ b/doc/html/sql-overview-table3-main-cpp.html
@@ -45,7 +45,7 @@ body { background: #ffffff; color: black; }
#include "main.h"
#include &lt;<a href="tqdatatable-h.html">tqdatatable.h</a>&gt;
-<a name="f9"></a>StatusPicker::StatusPicker( <a href="ntqwidget.html">TQWidget</a> *parent, const char *name )
+<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="tqsqlcursor.html">TQSqlCursor</a> cur( "status" );
@@ -80,10 +80,10 @@ void <a name="f11"></a>StatusPicker::setStatusId( int statusid )
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;
}
@@ -116,7 +116,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>();
}