in reply to Re: How to printout a Gtk2::ComboBox
in thread How to printout a Gtk2::ComboBox

The docs for Gtk2::Ex::ComboBox say you want get_treeview to get the model:
my @model = $combo->get_treeview; print $_ for @model;
"Returns the treeview that serves as the model for the ComboBox".