summaryrefslogtreecommitdiffstats
path: root/vcs/perforce/commitdlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vcs/perforce/commitdlg.cpp')
-rw-r--r--vcs/perforce/commitdlg.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcs/perforce/commitdlg.cpp b/vcs/perforce/commitdlg.cpp
index c5706903..daa882d4 100644
--- a/vcs/perforce/commitdlg.cpp
+++ b/vcs/perforce/commitdlg.cpp
@@ -17,7 +17,7 @@
#include <tqtextedit.h>
#include <tqpushbutton.h>
#include <tqregexp.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tdeapplication.h>
#include <tdelocale.h>
#include <klineedit.h>
@@ -103,9 +103,9 @@ void CommitDialog::setDepotFiles( const TQStringList& lst )
args << (*it);
}
- ExecCommand* cmd = new ExecCommand( "p4", args, TQString(), TQStringList(), TQT_TQOBJECT(this) );
- connect( cmd, TQT_SIGNAL(finished( const TQString&, const TQString& )),
- this, TQT_SLOT(getFilesFinished( const TQString&, const TQString& )) );
+ ExecCommand* cmd = new ExecCommand( "p4", args, TQString(), TQStringList(), this );
+ connect( cmd, TQ_SIGNAL(finished( const TQString&, const TQString& )),
+ this, TQ_SLOT(getFilesFinished( const TQString&, const TQString& )) );
}
void CommitDialog::getFilesFinished( const TQString& out, const TQString& /* err */ )