diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-23 14:04:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-27 16:08:54 +0900 |
commit | 04913ce7a46fd027856e83a96205fdc388742a19 (patch) | |
tree | a04a117317c14854a6b91072658ba0eb3ad8b3fc /doc/html/ntqprocess.html | |
parent | c11c0f228b65f7471a26513ef8dbde413e75f8fa (diff) | |
download | tqt3-04913ce7a46fd027856e83a96205fdc388742a19.tar.gz tqt3-04913ce7a46fd027856e83a96205fdc388742a19.zip |
Rename ntqobject*.h and qobject*.cpp to tqobject*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/ntqprocess.html')
-rw-r--r-- | doc/html/ntqprocess.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/ntqprocess.html b/doc/html/ntqprocess.html index 0f84b5b72..ba105e3d3 100644 --- a/doc/html/ntqprocess.html +++ b/doc/html/ntqprocess.html @@ -35,7 +35,7 @@ body { background: #ffffff; color: black; } to communicate with them. <a href="#details">More...</a> <p><tt>#include <<a href="qprocess-h.html">ntqprocess.h</a>></tt> -<p>Inherits <a href="ntqobject.html">TQObject</a>. +<p>Inherits <a href="tqobject.html">TQObject</a>. <p><a href="qprocess-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> @@ -153,7 +153,7 @@ this: proc-><a href="#addArgument">addArgument</a>( "i18n" ); proc-><a href="#addArgument">addArgument</a>( "small_dialog.ui" ); - <a name="x2123"></a> <a href="ntqobject.html#connect">connect</a>( proc, TQ_SIGNAL(<a href="#readyReadStdout">readyReadStdout</a>()), + <a name="x2123"></a> <a href="tqobject.html#connect">connect</a>( proc, TQ_SIGNAL(<a href="#readyReadStdout">readyReadStdout</a>()), this, TQ_SLOT(readFromStdout()) ); </pre><pre> <a name="x2124"></a> if ( !proc-><a href="#start">start</a>() ) { // error handling @@ -229,28 +229,28 @@ to the <a href="#setCommunication">setCommunication</a>() call. </ul><p> <p>See also <a href="#setCommunication">setCommunication</a>() and <a href="#communication">communication</a>(). <hr><h2>Member Function Documentation</h2> -<h3 class=fn><a name="TQProcess"></a>TQProcess::TQProcess ( <a href="ntqobject.html">TQObject</a> * parent = 0, const char * name = 0 ) +<h3 class=fn><a name="TQProcess"></a>TQProcess::TQProcess ( <a href="tqobject.html">TQObject</a> * parent = 0, const char * name = 0 ) </h3> Constructs a TQProcess object. The <em>parent</em> and <em>name</em> parameters -are passed to the <a href="ntqobject.html">TQObject</a> constructor. +are passed to the <a href="tqobject.html">TQObject</a> constructor. <p> <p>See also <a href="#setArguments">setArguments</a>(), <a href="#addArgument">addArgument</a>(), and <a href="#start">start</a>(). -<h3 class=fn><a name="TQProcess-2"></a>TQProcess::TQProcess ( const <a href="ntqstring.html">TQString</a> & arg0, <a href="ntqobject.html">TQObject</a> * parent = 0, const char * name = 0 ) +<h3 class=fn><a name="TQProcess-2"></a>TQProcess::TQProcess ( const <a href="ntqstring.html">TQString</a> & arg0, <a href="tqobject.html">TQObject</a> * parent = 0, const char * name = 0 ) </h3> Constructs a TQProcess with <em>arg0</em> as the command to be executed. -The <em>parent</em> and <em>name</em> parameters are passed to the <a href="ntqobject.html">TQObject</a> +The <em>parent</em> and <em>name</em> parameters are passed to the <a href="tqobject.html">TQObject</a> constructor. <p> The process is not started. You must call <a href="#start">start</a>() or <a href="#launch">launch</a>() to start the process. <p> <p>See also <a href="#setArguments">setArguments</a>(), <a href="#addArgument">addArgument</a>(), and <a href="#start">start</a>(). -<h3 class=fn><a name="TQProcess-3"></a>TQProcess::TQProcess ( const <a href="ntqstringlist.html">TQStringList</a> & args, <a href="ntqobject.html">TQObject</a> * parent = 0, const char * name = 0 ) +<h3 class=fn><a name="TQProcess-3"></a>TQProcess::TQProcess ( const <a href="ntqstringlist.html">TQStringList</a> & args, <a href="tqobject.html">TQObject</a> * parent = 0, const char * name = 0 ) </h3> Constructs a TQProcess with <em>args</em> as the arguments of the process. The first element in the list is the command to be executed. The other elements in the list are the arguments to this command. The <em>parent</em> and <em>name</em> parameters are passed to the -<a href="ntqobject.html">TQObject</a> constructor. +<a href="tqobject.html">TQObject</a> constructor. <p> The process is not started. You must call <a href="#start">start</a>() or <a href="#launch">launch</a>() to start the process. <p> <p>See also <a href="#setArguments">setArguments</a>(), <a href="#addArgument">addArgument</a>(), and <a href="#start">start</a>(). @@ -261,7 +261,7 @@ Destroys the instance. <p> If the process is running, it is <b>not</b> terminated! The standard input, standard output and standard error of the process are closed. -<p> You can connect the <a href="ntqobject.html#destroyed">destroyed</a>() signal to the <a href="#kill">kill</a>() slot, if you +<p> You can connect the <a href="tqobject.html#destroyed">destroyed</a>() signal to the <a href="#kill">kill</a>() slot, if you want the process to be terminated automatically when the instance is destroyed. <p> <p>See also <a href="#tryTerminate">tryTerminate</a>() and <a href="#kill">kill</a>(). @@ -412,7 +412,7 @@ this signal is emitted immediately. <p> This signal is especially useful if you want to know when you can safely delete the TQProcess object when you are not interested in reading from standard output or standard error. -<p> <p>See also <a href="#launch">launch</a>() and <a href="ntqobject.html#deleteLater">TQObject::deleteLater</a>(). +<p> <p>See also <a href="#launch">launch</a>() and <a href="tqobject.html#deleteLater">TQObject::deleteLater</a>(). <h3 class=fn>bool <a name="normalExit"></a>TQProcess::normalExit () const </h3> |