diff options
author | Timothy Pearson <[email protected]> | 2011-12-18 18:13:14 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-18 18:13:14 -0600 |
commit | 02c9636ebca6d98672d0d14528007b48e02d265a (patch) | |
tree | 710728f527875208bda40456f0f33ab4bba8ca03 /iso | |
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 'iso')
-rw-r--r-- | iso/iso.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/iso/iso.cpp b/iso/iso.cpp index 24023ca..f7608c6 100644 --- a/iso/iso.cpp +++ b/iso/iso.cpp @@ -150,7 +150,7 @@ bool kio_isoProtocol::checkNewFile( TQString fullPath, TQString & path, int star path.truncate( len - 1 ); } else - path = TQString::tqfromLatin1("/"); + path = TQString::fromLatin1("/"); kdDebug() << "Found. isoFile=" << isoFile << " path=" << path << endl; break; } @@ -259,10 +259,10 @@ void kio_isoProtocol::listDir( const KURL & url ) if ( path.isEmpty() ) { - KURL redir( TQString::tqfromLatin1( "iso:/") ); + KURL redir( TQString::fromLatin1( "iso:/") ); kdDebug() << "url.path()==" << url.path() << endl; if (url.hasRef()) redir.setRef(url.htmlRef()); - redir.setPath( url.path() + TQString::tqfromLatin1("/") ); + redir.setPath( url.path() + TQString::fromLatin1("/") ); kdDebug() << "kio_isoProtocol::listDir: redirection " << redir.url() << endl; redirection( redir ); finished(); @@ -356,7 +356,7 @@ void kio_isoProtocol::stat( const KURL & url ) const KArchiveEntry* isoEntry; if ( path.isEmpty() ) { - path = TQString::tqfromLatin1( "/" ); + path = TQString::fromLatin1( "/" ); isoEntry = root; } else { isoEntry = root->entry( path ); |