summaryrefslogtreecommitdiffstats
path: root/doc/html/sql-overview-custom1-main-cpp.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
commitfef846914f8db6dc117e206ef913d519bf6bb33e (patch)
treed6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/html/sql-overview-custom1-main-cpp.html
parent8ef4ea451dd81dd66b34ed31aaa631f6df24a192 (diff)
downloadtqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.tar.gz
tqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.zip
Rename basic widget nt* related files to equivalent tq*
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.html12
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 13961bb5..6ae9969c 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> &amp;)),
+ <a href="tqobject.html#connect">connect</a>( this, TQ_SIGNAL(<a href="tqlineedit.html#textChanged">textChanged</a>(const <a href="tqstring.html">TQString</a> &amp;)),
this, TQ_SLOT(changed(const <a href="tqstring.html">TQString</a> &amp;)) );
}
@@ -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-&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="tqlineedit.html">TQLineEdit</a> *salaryEdit = new <a href="tqlineedit.html">TQLineEdit</a>( this );
+ salaryEdit-&gt;<a href="tqlineedit.html#setAlignment">setAlignment</a>( TQt::AlignRight );
+ <a href="tqpushbutton.html">TQPushButton</a> *saveButton = new <a href="tqpushbutton.html">TQPushButton</a>( "&amp;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-&gt;<a href="ntqdialog.html#show">show</a>();
+ formDialog-&gt;<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>();