summaryrefslogtreecommitdiffstats
path: root/krusader/VFS/normal_vfs.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:07 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:07 -0600
commit644e85d451b96982107f4e70977f0ff08b91291d (patch)
tree1d48dc166787231440da12a553a0195177858d8d /krusader/VFS/normal_vfs.cpp
parent44ec35d6f3ec0bf8067f31896d7721ac3082f66f (diff)
downloadkrusader-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 'krusader/VFS/normal_vfs.cpp')
-rw-r--r--krusader/VFS/normal_vfs.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/krusader/VFS/normal_vfs.cpp b/krusader/VFS/normal_vfs.cpp
index 370b943..9db06a7 100644
--- a/krusader/VFS/normal_vfs.cpp
+++ b/krusader/VFS/normal_vfs.cpp
@@ -87,7 +87,7 @@ bool normal_vfs::populateVfsList(const KURL& origin, bool showHidden){
// check that the new origin exists
if ( !TQDir(path).exists() )
{
- if( !quietMode ) KMessageBox::error(krApp, i18n("Directory %1 does not exist!").arg( path ), i18n("Error"));
+ if( !quietMode ) KMessageBox::error(krApp, i18n("Directory %1 does not exist!").tqarg( path ), i18n("Error"));
return false;
}
@@ -97,7 +97,7 @@ bool normal_vfs::populateVfsList(const KURL& origin, bool showHidden){
DIR* dir = opendir(path.local8Bit());
if(!dir)
{
- if( !quietMode ) KMessageBox::error(krApp, i18n("Can't open the %1 directory!").arg( path ), i18n("Error"));
+ if( !quietMode ) KMessageBox::error(krApp, i18n("Can't open the %1 directory!").tqarg( path ), i18n("Error"));
return false;
}
@@ -337,7 +337,7 @@ TQString normal_vfs::getACL( const TQString & path, int type )
return TQString();
char *aclString = acl_to_text( acl, 0 );
- TQString ret = TQString::fromLatin1( aclString );
+ TQString ret = TQString::tqfromLatin1( aclString );
acl_free( (void*)aclString );
acl_free( acl );