ruby-****@sourc*****
ruby-****@sourc*****
2012年 8月 16日 (木) 07:53:51 JST
------------------------- REMOTE_ADDR = 70.49.49.99 REMOTE_HOST = URL = http://ruby-gnome2.sourceforge.jp/hiki.cgi?tut-gtk2-treev-parts ------------------------- @@ -305,9 +305,9 @@ # Add all of the products to the GtkListStore. list.each_with_index do |e, i| iter = store.append - store.set_value(iter, BUY_IT, list[i].buy) - store.set_value(iter, QUANTITY, list[i].quantity) - store.set_value(iter, PRODUCT, list[i].product) + iter[BUY_IT] = list[i].buy # same as: >>> # store.set_value(iter, BUY_IT, list[i].buy) + iter[QUANTITY] = list[i].quantity # same as: >>> # store.set_value(iter, QUANTITY, list[i].quantity) + iter[PRODUCT] = list[i].product # same as: >>> # store.set_value(iter, PRODUCT, list[i].product) end Following is the pertinent API for the methods we used when dealing with the Gtk::ListStore object in the example above: