diff options
Diffstat (limited to 'doc/html/sql-overview-custom1-main-cpp.html')
-rw-r--r-- | doc/html/sql-overview-custom1-main-cpp.html | 6 |
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 7f4d9a0cf..29142df69 100644 --- a/doc/html/sql-overview-custom1-main-cpp.html +++ b/doc/html/sql-overview-custom1-main-cpp.html @@ -48,8 +48,8 @@ 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, SIGNAL(<a href="ntqlineedit.html#textChanged">textChanged</a>(const <a href="ntqstring.html">TQString</a> &)), - this, SLOT(changed(const <a href="ntqstring.html">TQString</a> &)) ); + <a href="ntqobject.html#connect">connect</a>( this, TQ_SIGNAL(<a href="ntqlineedit.html#textChanged">textChanged</a>(const <a href="ntqstring.html">TQString</a> &)), + this, TQ_SLOT(changed(const <a href="ntqstring.html">TQString</a> &)) ); } @@ -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-><a href="ntqlineedit.html#setAlignment">setAlignment</a>( TQt::AlignRight ); <a href="ntqpushbutton.html">TQPushButton</a> *saveButton = new <a href="ntqpushbutton.html">TQPushButton</a>( "&Save", this ); - <a href="ntqobject.html#connect">connect</a>( saveButton, SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), this, SLOT(save()) ); + <a href="ntqobject.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-><a href="qgridlayout.html#addWidget">addWidget</a>( forenameLabel, 0, 0 ); |