author | llornkcor <llornkcor> | 2002-05-01 23:22:28 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-05-01 23:22:28 (UTC) |
commit | 21ddb4ef8f53ac003836535708736b91fd2c9f57 (patch) (side-by-side diff) | |
tree | 116dd5b31b95b457c7331000be5d5f2a9624a8ee | |
parent | a3397118d3c384655bedb40210db96ca34adc0c9 (diff) | |
download | opie-21ddb4ef8f53ac003836535708736b91fd2c9f57.zip opie-21ddb4ef8f53ac003836535708736b91fd2c9f57.tar.gz opie-21ddb4ef8f53ac003836535708736b91fd2c9f57.tar.bz2 |
fixed symlink showing linked file instead of name of symlink.
-rw-r--r-- | noncore/apps/advancedfm/advancedfm.cpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/noncore/apps/advancedfm/advancedfm.cpp b/noncore/apps/advancedfm/advancedfm.cpp index a9ba3c2..a378170 100644 --- a/noncore/apps/advancedfm/advancedfm.cpp +++ b/noncore/apps/advancedfm/advancedfm.cpp @@ -297,3 +297,3 @@ void AdvancedFm::populateLocalView() fileS.sprintf( "%10li", sym.size() ); - fileL.sprintf( "%s -> %s", sym.fileName().data(),sym.absFilePath().data() ); + fileL.sprintf( "%s -> %s", fi->fileName().data(),sym.absFilePath().data() ); fileDate = sym.lastModified().toString(); @@ -418,3 +418,3 @@ void AdvancedFm::populateRemoteView() fileS.sprintf( "%10li", sym.size() ); - fileL.sprintf( "%s -> %s", sym.fileName().data(),sym.absFilePath().data() ); + fileL.sprintf( "%s -> %s", fi->fileName().data(),sym.absFilePath().data() ); fileDate = sym.lastModified().toString(); @@ -442,6 +442,5 @@ void AdvancedFm::populateRemoteView() // item->setPixmap( 0,pm ); - } else if( (fileInfo.permission( QFileInfo::ExeUser) - | fileInfo.permission( QFileInfo::ExeGroup) - | fileInfo.permission( QFileInfo::ExeOther)) & fs.find("vfat",0,TRUE) == -1) { - pm = Resource::loadPixmap( "exec"); + } else if( (fileInfo.permission( QFileInfo::ExeUser) + | fileInfo.permission( QFileInfo::ExeGroup) + | fileInfo.permission( QFileInfo::ExeOther)) & fs.find("vfat",0,TRUE) == -1) { ///// } else if(fileInfo.isExecutable()){ //is exec <<<< BROKEN!! @@ -1349,6 +1348,6 @@ void AdvancedFm::runCommand() { if( Local_View->currentItem()) - curFile = currentDir.canonicalPath() + Local_View->currentItem()->text(0); + curFile = currentDir.canonicalPath() +"/"+ Local_View->currentItem()->text(0); } else { if(Remote_View->currentItem()) - curFile = currentRemoteDir.canonicalPath() + Remote_View->currentItem()->text(0); + curFile = currentRemoteDir.canonicalPath() + "/"+Remote_View->currentItem()->text(0); } |