diff options
Diffstat (limited to 'tqtinterface/qt4/src/kernel/tqprocess.cpp')
-rw-r--r-- | tqtinterface/qt4/src/kernel/tqprocess.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tqtinterface/qt4/src/kernel/tqprocess.cpp b/tqtinterface/qt4/src/kernel/tqprocess.cpp index c85e2de..8249ff2 100644 --- a/tqtinterface/qt4/src/kernel/tqprocess.cpp +++ b/tqtinterface/qt4/src/kernel/tqprocess.cpp @@ -219,13 +219,13 @@ */ /*! - Constructs a TQProcess object. The \a tqparent and \a name parameters + Constructs a TQProcess object. The \a parent and \a name parameters are passed to the TQObject constructor. \sa setArguments() addArgument() start() */ -TQProcess::TQProcess( TQObject *tqparent, const char *name ) - : TQObject( tqparent, name ), ioRedirection( FALSE ), notifyOnExit( FALSE ), +TQProcess::TQProcess( TQObject *parent, const char *name ) + : TQObject( parent, name ), ioRedirection( FALSE ), notifyOnExit( FALSE ), wroteToStdinConnected( FALSE ), readStdoutCalled( FALSE ), readStderrCalled( FALSE ), comms( Stdin|Stdout|Stderr ) @@ -235,7 +235,7 @@ TQProcess::TQProcess( TQObject *tqparent, const char *name ) /*! Constructs a TQProcess with \a arg0 as the command to be executed. - The \a tqparent and \a name parameters are passed to the TQObject + The \a parent and \a name parameters are passed to the TQObject constructor. The process is not started. You must call start() or launch() to @@ -243,8 +243,8 @@ TQProcess::TQProcess( TQObject *tqparent, const char *name ) \sa setArguments() addArgument() start() */ -TQProcess::TQProcess( const TQString& arg0, TQObject *tqparent, const char *name ) - : TQObject( tqparent, name ), ioRedirection( FALSE ), notifyOnExit( FALSE ), +TQProcess::TQProcess( const TQString& arg0, TQObject *parent, const char *name ) + : TQObject( parent, name ), ioRedirection( FALSE ), notifyOnExit( FALSE ), wroteToStdinConnected( FALSE ), readStdoutCalled( FALSE ), readStderrCalled( FALSE ), comms( Stdin|Stdout|Stderr ) @@ -257,7 +257,7 @@ TQProcess::TQProcess( const TQString& arg0, TQObject *tqparent, const char *name Constructs a TQProcess with \a args 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 \a tqparent and \a name parameters are passed to the + command. The \a parent and \a name parameters are passed to the TQObject constructor. The process is not started. You must call start() or launch() to @@ -265,8 +265,8 @@ TQProcess::TQProcess( const TQString& arg0, TQObject *tqparent, const char *name \sa setArguments() addArgument() start() */ -TQProcess::TQProcess( const TQStringList& args, TQObject *tqparent, const char *name ) - : TQObject( tqparent, name ), ioRedirection( FALSE ), notifyOnExit( FALSE ), +TQProcess::TQProcess( const TQStringList& args, TQObject *parent, const char *name ) + : TQObject( parent, name ), ioRedirection( FALSE ), notifyOnExit( FALSE ), wroteToStdinConnected( FALSE ), readStdoutCalled( FALSE ), readStderrCalled( FALSE ), comms( Stdin|Stdout|Stderr ) |