summaryrefslogtreecommitdiffstats
path: root/krArc
diff options
context:
space:
mode:
Diffstat (limited to 'krArc')
-rw-r--r--krArc/krarc.cpp8
-rw-r--r--krArc/krarc.h8
2 files changed, 8 insertions, 8 deletions
diff --git a/krArc/krarc.cpp b/krArc/krarc.cpp
index 4d26e76..16f4d85 100644
--- a/krArc/krarc.cpp
+++ b/krArc/krarc.cpp
@@ -314,8 +314,8 @@ void tdeio_krarcProtocol::get(const KURL& url, int tries ){
emit mimeType( mt->name() );
proc << getCmd << convertName( arcFile->url().path() )+" ";
if( arcType != "gzip" && arcType != "bzip2" && arcType != "xz") proc << convertFileName( file );
- connect(&proc,TQT_SIGNAL(receivedStdout(TDEProcess*,char*,int)),
- this,TQT_SLOT(receivedData(TDEProcess*,char*,int)) );
+ connect(&proc,TQ_SIGNAL(receivedStdout(TDEProcess*,char*,int)),
+ this,TQ_SLOT(receivedData(TDEProcess*,char*,int)) );
}
infoMessage(i18n("Unpacking %1 ...").arg( url.fileName() ) );
// change the working directory to our arcTempDir
@@ -1531,8 +1531,8 @@ TQString tdeio_krarcProtocol::detectArchive( bool &encrypted, TQString fileName
KrShellProcess proc;
proc << testCmd << convertName( fileName );
- connect( &proc, TQT_SIGNAL( receivedStdout(TDEProcess*,char*,int) ),
- this, TQT_SLOT( checkOutputForPassword( TDEProcess*,char*,int ) ) );
+ connect( &proc, TQ_SIGNAL( receivedStdout(TDEProcess*,char*,int) ),
+ this, TQ_SLOT( checkOutputForPassword( TDEProcess*,char*,int ) ) );
proc.start(TDEProcess::Block,TDEProcess::AllOutput);
encrypted = this->encrypted;
diff --git a/krArc/krarc.h b/krArc/krarc.h
index c989fd9..6b9ca6c 100644
--- a/krArc/krarc.h
+++ b/krArc/krarc.h
@@ -109,10 +109,10 @@ class KrShellProcess : public KShellProcess {
public:
KrShellProcess() : KShellProcess(), errorMsg( TQString() ), outputMsg( TQString() ) {
- connect(this,TQT_SIGNAL(receivedStderr(TDEProcess*,char*,int)),
- this,TQT_SLOT(receivedErrorMsg(TDEProcess*,char*,int)) );
- connect(this,TQT_SIGNAL(receivedStdout(TDEProcess*,char*,int)),
- this,TQT_SLOT(receivedOutputMsg(TDEProcess*,char*,int)) );
+ connect(this,TQ_SIGNAL(receivedStderr(TDEProcess*,char*,int)),
+ this,TQ_SLOT(receivedErrorMsg(TDEProcess*,char*,int)) );
+ connect(this,TQ_SIGNAL(receivedStdout(TDEProcess*,char*,int)),
+ this,TQ_SLOT(receivedOutputMsg(TDEProcess*,char*,int)) );
}
TQString getErrorMsg() {