diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:57:07 -0600 | 
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:57:07 -0600 | 
| commit | 644e85d451b96982107f4e70977f0ff08b91291d (patch) | |
| tree | 1d48dc166787231440da12a553a0195177858d8d /iso/iso.cpp | |
| parent | 44ec35d6f3ec0bf8067f31896d7721ac3082f66f (diff) | |
| download | krusader-644e85d451b96982107f4e70977f0ff08b91291d.tar.gz krusader-644e85d451b96982107f4e70977f0ff08b91291d.zip | |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 44ec35d6f3ec0bf8067f31896d7721ac3082f66f.
Diffstat (limited to 'iso/iso.cpp')
| -rw-r--r-- | iso/iso.cpp | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/iso/iso.cpp b/iso/iso.cpp index 3a66edc..24023ca 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::fromLatin1("/"); +                path = TQString::tqfromLatin1("/");              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::fromLatin1( "iso:/") ); +        KURL redir( TQString::tqfromLatin1( "iso:/") );          kdDebug() << "url.path()==" << url.path() << endl;          if (url.hasRef()) redir.setRef(url.htmlRef()); -        redir.setPath( url.path() + TQString::fromLatin1("/") ); +        redir.setPath( url.path() + TQString::tqfromLatin1("/") );          kdDebug() << "kio_isoProtocol::listDir: redirection " << redir.url() << endl;          redirection( redir );          finished(); @@ -274,7 +274,7 @@ void kio_isoProtocol::listDir( const KURL & url )      const KArchiveDirectory* dir;      if (!path.isEmpty() && path != "/")      { -        kdDebug()   << TQString("Looking for entry %1").arg(path) << endl; +        kdDebug()   << TQString("Looking for entry %1").tqarg(path) << endl;          const KArchiveEntry* e = root->entry( path );          if ( !e )          { @@ -356,7 +356,7 @@ void kio_isoProtocol::stat( const KURL & url )      const KArchiveEntry* isoEntry;      if ( path.isEmpty() )      { -        path = TQString::fromLatin1( "/" ); +        path = TQString::tqfromLatin1( "/" );          isoEntry = root;      } else {          isoEntry = root->entry( path ); | 
