1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/tk/lib/tkextlib/tile/treeview.rb: fix syntax error.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48024 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2014-10-19 11:06:07 +00:00
parent 824670aa9e
commit 36284e2413
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Sun Oct 19 20:05:58 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* ext/tk/lib/tkextlib/tile/treeview.rb: fix syntax error.
Sun Oct 19 18:39:39 2014 Martin Duerst <duerst@it.aoyama.ac.jp> Sun Oct 19 18:39:39 2014 Martin Duerst <duerst@it.aoyama.ac.jp>
* enc/prelude.rb: Added automatic loading of * enc/prelude.rb: Added automatic loading of

View file

@ -991,11 +991,11 @@ class Tk::Tile::Treeview::Tag < TkObject
end end
def add(*items) def add(*items)
@t.tag_add(@id, *items)) @t.tag_add(@id, *items)
end end
def remove(*items) def remove(*items)
@t.tag_remove(@id, *items)) @t.tag_remove(@id, *items)
end end
def bind(seq, *args) def bind(seq, *args)