diff options
author | Michele Calgaro <[email protected]> | 2024-07-29 12:43:23 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-07-29 12:43:23 +0900 |
commit | fef846914f8db6dc117e206ef913d519bf6bb33e (patch) | |
tree | d6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/html/sql-overview-custom1-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 <[email protected]>
Diffstat (limited to 'doc/html/sql-overview-custom1-main-cpp.html')
-rw-r--r-- | doc/html/sql-overview-custom1-main-cpp.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/sql-overview-custom1-main-cpp.html b/doc/html/sql-overview-custom1-main-cpp.html index 13961bb5f..6ae9969cf 100644 --- a/doc/html/sql-overview-custom1-main-cpp.html +++ b/doc/html/sql-overview-custom1-main-cpp.html @@ -46,9 +46,9 @@ body { background: #ffffff; color: black; } <a name="f16"></a>CustomEdit::CustomEdit( <a href="tqwidget.html">TQWidget</a> *parent, const char *name ) : - <a href="ntqlineedit.html">TQLineEdit</a>( parent, name ) + <a href="tqlineedit.html">TQLineEdit</a>( parent, name ) { - <a href="tqobject.html#connect">connect</a>( this, TQ_SIGNAL(<a href="ntqlineedit.html#textChanged">textChanged</a>(const <a href="tqstring.html">TQString</a> &)), + <a href="tqobject.html#connect">connect</a>( this, TQ_SIGNAL(<a href="tqlineedit.html#textChanged">textChanged</a>(const <a href="tqstring.html">TQString</a> &)), this, TQ_SLOT(changed(const <a href="tqstring.html">TQString</a> &)) ); } @@ -79,9 +79,9 @@ TQString <a name="f19"></a>CustomEdit::upperLine() const <a href="tqlabel.html">TQLabel</a> *surnameLabel = new <a href="tqlabel.html">TQLabel</a>( "Surname:", this ); CustomEdit *surnameEdit = new CustomEdit( this ); <a href="tqlabel.html">TQLabel</a> *salaryLabel = new <a href="tqlabel.html">TQLabel</a>( "Salary:", this ); - <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="tqlineedit.html">TQLineEdit</a> *salaryEdit = new <a href="tqlineedit.html">TQLineEdit</a>( this ); + salaryEdit-><a href="tqlineedit.html#setAlignment">setAlignment</a>( TQt::AlignRight ); + <a href="tqpushbutton.html">TQPushButton</a> *saveButton = new <a href="tqpushbutton.html">TQPushButton</a>( "&Save", this ); <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 ); @@ -137,7 +137,7 @@ int main( int argc, char *argv[] ) return 1; FormDialog *formDialog = new FormDialog(); - formDialog-><a href="ntqdialog.html#show">show</a>(); + formDialog-><a href="tqdialog.html#show">show</a>(); app.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( formDialog ); return app.<a href="ntqapplication.html#exec">exec</a>(); |