summaryrefslogtreecommitdiffstats
path: root/doc/html/tqaction-application-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-08-25 15:36:25 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-08-29 22:23:36 +0900
commit0917fbb5387978eb7b2e2fd68bcb6beaa8c46505 (patch)
tree0ef68a6a92087957855c7607ac176821d10d049d /doc/html/tqaction-application-example.html
parent7b1d2ad2df8cd011b487c43336aa67639fa359c9 (diff)
downloadtqt3-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/tqaction-application-example.html')
-rw-r--r--doc/html/tqaction-application-example.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/tqaction-application-example.html b/doc/html/tqaction-application-example.html
index baab0a2f..9ccf17cf 100644
--- a/doc/html/tqaction-application-example.html
+++ b/doc/html/tqaction-application-example.html
@@ -67,7 +67,7 @@ public:
~ApplicationWindow();
protected:
- void closeEvent( <a href="qcloseevent.html">TQCloseEvent</a>* );
+ void closeEvent( <a href="tqcloseevent.html">TQCloseEvent</a>* );
private slots:
void newDoc();
@@ -117,7 +117,7 @@ private:
#include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt;
#include &lt;<a href="tqprinter-h.html">tqprinter.h</a>&gt;
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
-#include &lt;<a href="qaccel-h.html">ntqaccel.h</a>&gt;
+#include &lt;<a href="tqaccel-h.html">tqaccel.h</a>&gt;
#include &lt;<a href="tqtextstream-h.html">tqtextstream.h</a>&gt;
#include &lt;<a href="tqpainter-h.html">tqpainter.h</a>&gt;
#include &lt;<a href="tqpaintdevicemetrics-h.html">tqpaintdevicemetrics.h</a>&gt;
@@ -360,10 +360,10 @@ void <a name="f381"></a>ApplicationWindow::print()
}
}
-<a name="x1173"></a>void ApplicationWindow::<a href="tqwidget.html#closeEvent">closeEvent</a>( <a href="qcloseevent.html">TQCloseEvent</a>* ce )
+<a name="x1173"></a>void ApplicationWindow::<a href="tqwidget.html#closeEvent">closeEvent</a>( <a href="tqcloseevent.html">TQCloseEvent</a>* ce )
{
<a name="x1165"></a> if ( !e-&gt;<a href="tqtextedit.html#isModified">isModified</a>() ) {
-<a name="x1128"></a> ce-&gt;<a href="qcloseevent.html#accept">accept</a>();
+<a name="x1128"></a> ce-&gt;<a href="tqcloseevent.html#accept">accept</a>();
return;
}
@@ -374,14 +374,14 @@ void <a name="f381"></a>ApplicationWindow::print()
0, 1 ) ) {
case 0:
save();
- ce-&gt;<a href="qcloseevent.html#accept">accept</a>();
+ ce-&gt;<a href="tqcloseevent.html#accept">accept</a>();
break;
case 1:
default: // just for sanity
-<a name="x1129"></a> ce-&gt;<a href="qcloseevent.html#ignore">ignore</a>();
+<a name="x1129"></a> ce-&gt;<a href="tqcloseevent.html#ignore">ignore</a>();
break;
case 2:
- ce-&gt;<a href="qcloseevent.html#accept">accept</a>();
+ ce-&gt;<a href="tqcloseevent.html#accept">accept</a>();
break;
}
}