summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2013-11-23 04:36:36 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2013-11-24 23:53:10 +0100
commit149cccfbd12c2820c55bda4343ff305831a177a6 (patch)
tree51d6d92449ac8b1632162e82c1a9b34453b966f4
parentcca23bf47b1c008a4385beefd02410b22c9bae12 (diff)
downloaddrakx-149cccfbd12c2820c55bda4343ff305831a177a6.tar
drakx-149cccfbd12c2820c55bda4343ff305831a177a6.tar.gz
drakx-149cccfbd12c2820c55bda4343ff305831a177a6.tar.bz2
drakx-149cccfbd12c2820c55bda4343ff305831a177a6.tar.xz
drakx-149cccfbd12c2820c55bda4343ff305831a177a6.zip
add set_popdown_strings API to Gtk3::ComboBoxText
-rw-r--r--perl-install/ugtk3.pm9
1 files changed, 9 insertions, 0 deletions
diff --git a/perl-install/ugtk3.pm b/perl-install/ugtk3.pm
index ce2411820..dad860cb8 100644
--- a/perl-install/ugtk3.pm
+++ b/perl-install/ugtk3.pm
@@ -1316,6 +1316,15 @@ sub set_text {
}
+package Gtk3::ComboBoxText;
+
+# try to get combox <==> option menu mapping
+*new_with_strings = *Gtk3::ComboBox::new_with_strings;
+*set_popdown_strings = *Gtk3::ComboBox::set_popdown_strings;
+*get_text = *Gtk3::ComboBox::get_text;
+*set_text = *Gtk3::ComboBox::set_text;
+
+
package Gtk3::Label;
sub set {
my ($label, $text) = @_;