* 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
Родитель 824670aa9e
Коммит 36284e2413
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -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>
* enc/prelude.rb: Added automatic loading of

Просмотреть файл

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