author | llornkcor <llornkcor> | 2002-05-02 02:42:45 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-05-02 02:42:45 (UTC) |
commit | dd8d5784a9ef93b0d4ed7b6d1751942a904ab7cb (patch) (side-by-side diff) | |
tree | 2f40da1aec6e66dd9c67eb73297561c9e5a64e2b | |
parent | 6dfc6f34420b8c9222d1c785efc950fc5031a7f0 (diff) | |
download | opie-dd8d5784a9ef93b0d4ed7b6d1751942a904ab7cb.zip opie-dd8d5784a9ef93b0d4ed7b6d1751942a904ab7cb.tar.gz opie-dd8d5784a9ef93b0d4ed7b6d1751942a904ab7cb.tar.bz2 |
bug on vfat workaround... sorta
-rw-r--r-- | noncore/apps/advancedfm/advancedfm.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/noncore/apps/advancedfm/advancedfm.cpp b/noncore/apps/advancedfm/advancedfm.cpp index 7cd8644..b224deb 100644 --- a/noncore/apps/advancedfm/advancedfm.cpp +++ b/noncore/apps/advancedfm/advancedfm.cpp @@ -321,5 +321,6 @@ void AdvancedFm::populateLocalView() } else if( (fileInfo.permission( QFileInfo::ExeUser) | fileInfo.permission( QFileInfo::ExeGroup) - | fileInfo.permission( QFileInfo::ExeOther)) & fs.find("vfat",0,TRUE) == -1) { + | fileInfo.permission( QFileInfo::ExeOther)) + | fs == "vfat" && fileInfo.filePath().contains("/bin") ) { pm = Resource::loadPixmap( "exec"); // else { //is exec @@ -443,5 +444,6 @@ void AdvancedFm::populateRemoteView() } else if( (fileInfo.permission( QFileInfo::ExeUser) | fileInfo.permission( QFileInfo::ExeGroup) - | fileInfo.permission( QFileInfo::ExeOther)) & fs.find("vfat",0,TRUE) == -1) { + | fileInfo.permission( QFileInfo::ExeOther)) + | fs == "vfat" && fileInfo.filePath().contains("/bin") ) { ///// } else if(fileInfo.isExecutable()){ //is exec <<<< BROKEN!! pm = Resource::loadPixmap( "exec"); |