summaryrefslogtreecommitdiffstats
path: root/tar
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-19 11:39:24 -0600
committerSlávek Banko <[email protected]>2012-06-23 02:44:05 +0200
commit74289f5af0c907bf314337aefb8545fd1d970d9a (patch)
treea377f5afda9a8885eea56159409e8247fe8afea8 /tar
parent865382b125b5d8af35173e3028eeaf3ab89ed86a (diff)
downloadkrusader-74289f5af0c907bf314337aefb8545fd1d970d9a.tar.gz
krusader-74289f5af0c907bf314337aefb8545fd1d970d9a.zip
Remove additional unneeded tq method conversions
(cherry picked from commit 9fae0887708c35fc8ad295a03417c07feeb653dc)
Diffstat (limited to 'tar')
-rw-r--r--tar/tar.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tar/tar.cc b/tar/tar.cc
index f65fb26..7345160 100644
--- a/tar/tar.cc
+++ b/tar/tar.cc
@@ -79,7 +79,7 @@ void ArchiveProtocol::put( const KURL& url, int, bool, bool resume ){
if( !m_archiveFile->prepareWriting(filename,user,group,size) ){
error(ERR_UNSUPPORTED_ACTION,
- i18n("Writing to %1 is not supported").tqarg(filename) );
+ i18n("Writing to %1 is not supported").arg(filename) );
return;
}
while( (temp=buffer.dequeue()) ){
@@ -259,7 +259,7 @@ void ArchiveProtocol::listDir( const KURL & url ) {
const KArchiveDirectory* root = m_archiveFile->directory();
const KArchiveDirectory* dir;
if ( !path.isEmpty() && path != "/" ) {
- kdDebug( 7109 ) << TQString( "Looking for entry %1" ).tqarg( path ) << endl;
+ kdDebug( 7109 ) << TQString( "Looking for entry %1" ).arg( path ) << endl;
const KArchiveEntry* e = root->entry( path );
if ( !e ) {
error( KIO::ERR_DOES_NOT_EXIST, url.prettyURL() );