diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:13:14 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:13:14 -0600 |
commit | 02c9636ebca6d98672d0d14528007b48e02d265a (patch) | |
tree | 710728f527875208bda40456f0f33ab4bba8ca03 /tar/tar.cc | |
parent | 644e85d451b96982107f4e70977f0ff08b91291d (diff) | |
download | krusader-02c9636ebca6d98672d0d14528007b48e02d265a.tar.gz krusader-02c9636ebca6d98672d0d14528007b48e02d265a.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'tar/tar.cc')
-rw-r--r-- | tar/tar.cc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -148,7 +148,7 @@ bool ArchiveProtocol::checkNewFile( const KURL & url, TQString & path ) { if ( path[ len - 1 ] == '/' ) path.truncate( len - 1 ); } else - path = TQString::tqfromLatin1( "/" ); + path = TQString::fromLatin1( "/" ); kdDebug( 7109 ) << "Found. archiveFile=" << archiveFile << " path=" << path << endl; break; } @@ -246,9 +246,9 @@ void ArchiveProtocol::listDir( const KURL & url ) { } if ( path.isEmpty() ) { - KURL redir( url.protocol() + TQString::tqfromLatin1( ":/" ) ); + KURL redir( url.protocol() + TQString::fromLatin1( ":/" ) ); kdDebug( 7109 ) << "url.path()==" << url.path() << endl; - redir.setPath( url.path() + TQString::tqfromLatin1( "/" ) ); + redir.setPath( url.path() + TQString::fromLatin1( "/" ) ); kdDebug( 7109 ) << "ArchiveProtocol::listDir: redirection " << redir.url() << endl; redirection( redir ); finished(); @@ -333,7 +333,7 @@ void ArchiveProtocol::stat( const KURL & url ) { const KArchiveDirectory* root = m_archiveFile->directory(); const KArchiveEntry* archiveEntry; if ( path.isEmpty() ) { - path = TQString::tqfromLatin1( "/" ); + path = TQString::fromLatin1( "/" ); archiveEntry = root; } else { archiveEntry = root->entry( path ); |