summaryrefslogtreecommitdiffstats
path: root/doc/html/sql-overview-custom1-main-cpp.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-23 14:04:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-27 16:08:54 +0900
commit04913ce7a46fd027856e83a96205fdc388742a19 (patch)
treea04a117317c14854a6b91072658ba0eb3ad8b3fc /doc/html/sql-overview-custom1-main-cpp.html
parentc11c0f228b65f7471a26513ef8dbde413e75f8fa (diff)
downloadtqt3-04913ce7a46fd027856e83a96205fdc388742a19.tar.gz
tqt3-04913ce7a46fd027856e83a96205fdc388742a19.zip
Rename ntqobject*.h and qobject*.cpp to tqobject*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/sql-overview-custom1-main-cpp.html')
-rw-r--r--doc/html/sql-overview-custom1-main-cpp.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/sql-overview-custom1-main-cpp.html b/doc/html/sql-overview-custom1-main-cpp.html
index 29142df69..0912a8927 100644
--- a/doc/html/sql-overview-custom1-main-cpp.html
+++ b/doc/html/sql-overview-custom1-main-cpp.html
@@ -48,7 +48,7 @@ body { background: #ffffff; color: black; }
<a name="f16"></a>CustomEdit::CustomEdit( <a href="ntqwidget.html">TQWidget</a> *parent, const char *name ) :
<a href="ntqlineedit.html">TQLineEdit</a>( parent, name )
{
- <a href="ntqobject.html#connect">connect</a>( this, TQ_SIGNAL(<a href="ntqlineedit.html#textChanged">textChanged</a>(const <a href="ntqstring.html">TQString</a> &amp;)),
+ <a href="tqobject.html#connect">connect</a>( this, TQ_SIGNAL(<a href="ntqlineedit.html#textChanged">textChanged</a>(const <a href="ntqstring.html">TQString</a> &amp;)),
this, TQ_SLOT(changed(const <a href="ntqstring.html">TQString</a> &amp;)) );
}
@@ -82,7 +82,7 @@ TQString <a name="f19"></a>CustomEdit::upperLine() const
<a href="ntqlineedit.html">TQLineEdit</a> *salaryEdit = new <a href="ntqlineedit.html">TQLineEdit</a>( this );
salaryEdit-&gt;<a href="ntqlineedit.html#setAlignment">setAlignment</a>( TQt::AlignRight );
<a href="ntqpushbutton.html">TQPushButton</a> *saveButton = new <a href="ntqpushbutton.html">TQPushButton</a>( "&amp;Save", this );
- <a href="ntqobject.html#connect">connect</a>( saveButton, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), this, TQ_SLOT(save()) );
+ <a href="tqobject.html#connect">connect</a>( saveButton, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), this, TQ_SLOT(save()) );
<a href="qgridlayout.html">TQGridLayout</a> *grid = new <a href="qgridlayout.html">TQGridLayout</a>( this );
grid-&gt;<a href="qgridlayout.html#addWidget">addWidget</a>( forenameLabel, 0, 0 );
@@ -102,7 +102,7 @@ TQString <a name="f19"></a>CustomEdit::upperLine() const
staffCursor-&gt;<a href="ntqsqlquery.html#first">first</a>();
propMap = new <a href="ntqsqlpropertymap.html">TQSqlPropertyMap</a>;
- propMap-&gt;<a href="ntqsqlpropertymap.html#insert">insert</a>( forenameEdit-&gt;<a href="ntqobject.html#className">className</a>(), "upperLine" );
+ propMap-&gt;<a href="ntqsqlpropertymap.html#insert">insert</a>( forenameEdit-&gt;<a href="tqobject.html#className">className</a>(), "upperLine" );
sqlForm = new <a href="ntqsqlform.html">TQSqlForm</a>( this );
sqlForm-&gt;<a href="ntqsqlform.html#setRecord">setRecord</a>( staffCursor-&gt;<a href="ntqsqlcursor.html#primeUpdate">primeUpdate</a>() );