summaryrefslogtreecommitdiffstats
path: root/doc/html/sql-overview-form1-main-cpp.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-07-29 12:43:23 +0900
committerMichele Calgaro <[email protected]>2024-07-29 12:43:23 +0900
commitfef846914f8db6dc117e206ef913d519bf6bb33e (patch)
treed6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/html/sql-overview-form1-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 <[email protected]>
Diffstat (limited to 'doc/html/sql-overview-form1-main-cpp.html')
-rw-r--r--doc/html/sql-overview-form1-main-cpp.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/sql-overview-form1-main-cpp.html b/doc/html/sql-overview-form1-main-cpp.html
index 8f8dd8c91..122ced96f 100644
--- a/doc/html/sql-overview-form1-main-cpp.html
+++ b/doc/html/sql-overview-form1-main-cpp.html
@@ -43,16 +43,16 @@ body { background: #ffffff; color: black; }
*****************************************************************************/
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
-#include &lt;<a href="qdialog-h.html">ntqdialog.h</a>&gt;
+#include &lt;<a href="tqdialog-h.html">tqdialog.h</a>&gt;
#include &lt;<a href="tqlabel-h.html">tqlabel.h</a>&gt;
#include &lt;<a href="qlayout-h.html">ntqlayout.h</a>&gt;
-#include &lt;<a href="qlineedit-h.html">ntqlineedit.h</a>&gt;
+#include &lt;<a href="tqlineedit-h.html">tqlineedit.h</a>&gt;
#include &lt;<a href="tqsqldatabase-h.html">tqsqldatabase.h</a>&gt;
#include &lt;<a href="tqsqlcursor-h.html">tqsqlcursor.h</a>&gt;
#include &lt;<a href="tqsqlform-h.html">tqsqlform.h</a>&gt;
#include "../connection.h"
-class FormDialog : public <a href="ntqdialog.html">TQDialog</a>
+class FormDialog : public <a href="tqdialog.html">TQDialog</a>
{
public:
FormDialog();
@@ -66,7 +66,7 @@ class FormDialog : public <a href="ntqdialog.html">TQDialog</a>
<a href="tqlabel.html">TQLabel</a> *surnameLabel = new <a href="tqlabel.html">TQLabel</a>( "Surname:", this );
<a href="tqlabel.html">TQLabel</a> *surnameDisplay = new <a href="tqlabel.html">TQLabel</a>( 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 );
+ <a href="tqlineedit.html">TQLineEdit</a> *salaryEdit = new <a href="tqlineedit.html">TQLineEdit</a>( this );
<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 );
@@ -97,7 +97,7 @@ int main( int argc, char *argv[] )
if ( ! createConnections() ) 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>();