summaryrefslogtreecommitdiffstats
path: root/doc/html/process-example.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/process-example.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/process-example.html')
-rw-r--r--doc/html/process-example.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/process-example.html b/doc/html/process-example.html
index 1829895dd..1eef600d3 100644
--- a/doc/html/process-example.html
+++ b/doc/html/process-example.html
@@ -53,7 +53,7 @@ output of the command.
#include &lt;<a href="tqprocess-h.html">tqprocess.h</a>&gt;
#include &lt;<a href="qvbox-h.html">ntqvbox.h</a>&gt;
#include &lt;<a href="tqtextview-h.html">tqtextview.h</a>&gt;
-#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
+#include &lt;<a href="tqpushbutton-h.html">tqpushbutton.h</a>&gt;
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
#include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt;
@@ -74,14 +74,14 @@ public slots:
private:
<a href="tqprocess.html">TQProcess</a> *proc;
<a href="tqtextview.html">TQTextView</a> *output;
- <a href="ntqpushbutton.html">TQPushButton</a> *quitButton;
+ <a href="tqpushbutton.html">TQPushButton</a> *quitButton;
};
<a name="f204"></a>UicManager::UicManager()
{
// Layout
output = new <a href="tqtextview.html">TQTextView</a>( this );
- quitButton = new <a href="ntqpushbutton.html">TQPushButton</a>( <a href="tqobject.html#tr">tr</a>("Quit"), this );
+ quitButton = new <a href="tqpushbutton.html">TQPushButton</a>( <a href="tqobject.html#tr">tr</a>("Quit"), this );
<a href="tqobject.html#connect">connect</a>( quitButton, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()),
tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
<a href="tqwidget.html#resize">resize</a>( 500, 500 );
@@ -121,7 +121,7 @@ void <a name="f205"></a>UicManager::readFromStdout()
void <a name="f206"></a>UicManager::scrollToTop()
{
-<a name="x102"></a> output-&gt;<a href="ntqscrollview.html#setContentsPos">setContentsPos</a>( 0, 0 );
+<a name="x102"></a> output-&gt;<a href="tqscrollview.html#setContentsPos">setContentsPos</a>( 0, 0 );
}
int main( int argc, char **argv )