diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-25 15:36:25 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-29 22:23:36 +0900 |
commit | 0917fbb5387978eb7b2e2fd68bcb6beaa8c46505 (patch) | |
tree | 0ef68a6a92087957855c7607ac176821d10d049d /doc/html/simple-application-example.html | |
parent | 7b1d2ad2df8cd011b487c43336aa67639fa359c9 (diff) | |
download | tqt3-0917fbb5387978eb7b2e2fd68bcb6beaa8c46505.tar.gz tqt3-0917fbb5387978eb7b2e2fd68bcb6beaa8c46505.zip |
Rename remaining ntq[a-c]* related files to equivalent tq* (except ntqapplication.h and ntqconfig.h)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/simple-application-example.html')
-rw-r--r-- | doc/html/simple-application-example.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/simple-application-example.html b/doc/html/simple-application-example.html index 271a62364..2b51c98b2 100644 --- a/doc/html/simple-application-example.html +++ b/doc/html/simple-application-example.html @@ -66,7 +66,7 @@ public: ~ApplicationWindow(); protected: - void closeEvent( <a href="qcloseevent.html">TQCloseEvent</a>* ); + void closeEvent( <a href="tqcloseevent.html">TQCloseEvent</a>* ); private slots: void newDoc(); @@ -116,7 +116,7 @@ private: #include <<a href="qmessagebox-h.html">ntqmessagebox.h</a>> #include <<a href="tqprinter-h.html">tqprinter.h</a>> #include <<a href="qapplication-h.html">ntqapplication.h</a>> -#include <<a href="qaccel-h.html">ntqaccel.h</a>> +#include <<a href="tqaccel-h.html">tqaccel.h</a>> #include <<a href="tqtextstream-h.html">tqtextstream.h</a>> #include <<a href="tqpainter-h.html">tqpainter.h</a>> #include <<a href="tqpaintdevicemetrics-h.html">tqpaintdevicemetrics.h</a>> @@ -347,10 +347,10 @@ void <a name="f465"></a>ApplicationWindow::print() } } -<a name="x1592"></a>void ApplicationWindow::<a href="tqwidget.html#closeEvent">closeEvent</a>( <a href="qcloseevent.html">TQCloseEvent</a>* ce ) +<a name="x1592"></a>void ApplicationWindow::<a href="tqwidget.html#closeEvent">closeEvent</a>( <a href="tqcloseevent.html">TQCloseEvent</a>* ce ) { <a name="x1583"></a> if ( !e-><a href="tqtextedit.html#isModified">isModified</a>() ) { -<a name="x1545"></a> ce-><a href="qcloseevent.html#accept">accept</a>(); +<a name="x1545"></a> ce-><a href="tqcloseevent.html#accept">accept</a>(); return; } @@ -361,14 +361,14 @@ void <a name="f465"></a>ApplicationWindow::print() 0, 1 ) ) { case 0: save(); - ce-><a href="qcloseevent.html#accept">accept</a>(); + ce-><a href="tqcloseevent.html#accept">accept</a>(); break; case 1: - ce-><a href="qcloseevent.html#accept">accept</a>(); + ce-><a href="tqcloseevent.html#accept">accept</a>(); break; case 2: default: // just for sanity -<a name="x1546"></a> ce-><a href="qcloseevent.html#ignore">ignore</a>(); +<a name="x1546"></a> ce-><a href="tqcloseevent.html#ignore">ignore</a>(); break; } } |