Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 11c5630b2c8f00f64861e0dac51a202a > files > 49

php-gtk2-2.0.1-12mdv2010.0.i586.rpm

<?php
// FIXED by Christian on 2006-03-06
$cmb = new GtkComboBox();
$mod = new GtkListStore(Gtk::TYPE_STRING);
$cmb->set_model($mod);

$mod->append(array("one"));
$mod->append(array("two"));
$mod->append(array("three"));

$cmb->set_active(1);

//that should return an iter, not require one
var_dump($cmb->get_active_iter());
?>