diff options
Diffstat (limited to 'lib/util/execcommand.h')
-rw-r--r-- | lib/util/execcommand.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/util/execcommand.h b/lib/util/execcommand.h index c3e20d47..5be67682 100644 --- a/lib/util/execcommand.h +++ b/lib/util/execcommand.h @@ -37,18 +37,19 @@ Command execution facilities. * a progress dialog with the possibility to cancel the command. * * If there was an error or the user pressed cancel, finished () - * will emit a TQString::null, otherwise QStrings containing the stdout/stderr. + * will emit a TQString(), otherwise TQStrings containing the stdout/stderr. * * The object will delete itself after the finished signal has been emitted. - * Additional environment can be set in the TQStringList env via QStrings with the format "foo=blah" + * Additional environment can be set in the TQStringList env via TQStrings with the format "foo=blah" */ -class ExecCommand : public QObject +class ExecCommand : public TQObject { Q_OBJECT + TQ_OBJECT public: ExecCommand( const TQString& executable, const TQStringList& args, - const TQString& workingDir = TQString::null, - const TQStringList& env = TQStringList(), TQObject* parent = 0, const char* name = 0 ); + const TQString& workingDir = TQString(), + const TQStringList& env = TQStringList(), TQObject* tqparent = 0, const char* name = 0 ); ~ExecCommand(); signals: |