author | llornkcor <llornkcor> | 2002-05-02 03:35:28 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-05-02 03:35:28 (UTC) |
commit | a52fd4b1995e34963888397587aa2592ea858da6 (patch) (side-by-side diff) | |
tree | 6f8461a8ff72a96078bac6e3a644d33a8b25873a | |
parent | dd8d5784a9ef93b0d4ed7b6d1751942a904ab7cb (diff) | |
download | opie-a52fd4b1995e34963888397587aa2592ea858da6.zip opie-a52fd4b1995e34963888397587aa2592ea858da6.tar.gz opie-a52fd4b1995e34963888397587aa2592ea858da6.tar.bz2 |
I hate vfat.. I really do, or maybe I hate the way the kernel deals with it
-rw-r--r-- | noncore/apps/advancedfm/advancedfm.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/noncore/apps/advancedfm/advancedfm.cpp b/noncore/apps/advancedfm/advancedfm.cpp index b224deb..f4ca349 100644 --- a/noncore/apps/advancedfm/advancedfm.cpp +++ b/noncore/apps/advancedfm/advancedfm.cpp @@ -317,12 +317,13 @@ void AdvancedFm::populateLocalView() pm = Resource::loadPixmap( "lockedfolder" ); else pm= Resource::loadPixmap( "folder" ); // item->setPixmap( 0,pm ); + } else if ( fs == "vfat" && fileInfo.filePath().contains("/bin") ) { + pm = Resource::loadPixmap( "exec"); } else if( (fileInfo.permission( QFileInfo::ExeUser) | fileInfo.permission( QFileInfo::ExeGroup) - | fileInfo.permission( QFileInfo::ExeOther)) - | fs == "vfat" && fileInfo.filePath().contains("/bin") ) { + | fileInfo.permission( QFileInfo::ExeOther)) && fs != "vfat" ) { pm = Resource::loadPixmap( "exec"); // else { //is exec // pm = Resource::loadPixmap( "exec"); // } @@ -429,9 +430,9 @@ void AdvancedFm::populateRemoteView() isDir=TRUE; // qDebug( fileL); } } - QFileInfo fileInfo( currentDir.canonicalPath()+"/"+fileL); + QFileInfo fileInfo( currentRemoteDir.canonicalPath()+"/"+fileL); if(fileL !="./" && fi->exists()) { item= new QListViewItem( Remote_View, fileL, fileS, fileDate); QPixmap pm; @@ -440,13 +441,13 @@ void AdvancedFm::populateRemoteView() pm = Resource::loadPixmap( "lockedfolder" ); else pm= Resource::loadPixmap( "folder" ); // item->setPixmap( 0,pm ); + } else if ( fs == "vfat" && fileInfo.filePath().contains("/bin") ) { + pm = Resource::loadPixmap( "exec"); } else if( (fileInfo.permission( QFileInfo::ExeUser) | fileInfo.permission( QFileInfo::ExeGroup) - | fileInfo.permission( QFileInfo::ExeOther)) - | fs == "vfat" && fileInfo.filePath().contains("/bin") ) { -///// } else if(fileInfo.isExecutable()){ //is exec <<<< BROKEN!! + | fileInfo.permission( QFileInfo::ExeOther)) && fs != "vfat" ) { pm = Resource::loadPixmap( "exec"); // item->setPixmap( 0,pm); } else if( !fi->isReadable() ) { pm = Resource::loadPixmap( "locked" ); |