summaryrefslogtreecommitdiff
path: root/ext/tk
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-04-10 05:46:55 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-04-10 05:46:55 +0000
commit5a52925404d5febe9b4350c69a0dee211a3afd8a (patch)
tree35c5a51974a6444999bb19b65551271c716e48f4 /ext/tk
parent9e3f4f591faf603e6de8bb2d2afafb0b4a75d58e (diff)
commit miss...
* sample/tkextlib/treectrl/explorer.rb: File.executable? returns true even if it's plain text file. (this function only checks access right) again. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8296 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk')
-rw-r--r--ext/tk/sample/tkextlib/treectrl/explorer.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/ext/tk/sample/tkextlib/treectrl/explorer.rb b/ext/tk/sample/tkextlib/treectrl/explorer.rb
index b384fb7c8e..242777cbce 100644
--- a/ext/tk/sample/tkextlib/treectrl/explorer.rb
+++ b/ext/tk/sample/tkextlib/treectrl/explorer.rb
@@ -144,11 +144,7 @@ def demoExplorerDetails(t)
when '.txt'
img = 'small-txt'
else
- if FileTest.executable?(file)
- img = 'small-exe'
- else
- img = 'small-file'
- end
+ img = 'small-file'
end
type = ext.upcase