summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk2.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2005-03-01 18:34:18 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2005-03-01 18:34:18 +0000
commitf63da47a9c45ebc931441c36c530e7db03386fd4 (patch)
tree00b31e5934c9f05bae8923b296591605484adc0b /perl-install/ugtk2.pm
parent527e006edfb975d379ba5d3d260bb09fcf2b9072 (diff)
downloaddrakx-backup-do-not-use-f63da47a9c45ebc931441c36c530e7db03386fd4.tar
drakx-backup-do-not-use-f63da47a9c45ebc931441c36c530e7db03386fd4.tar.gz
drakx-backup-do-not-use-f63da47a9c45ebc931441c36c530e7db03386fd4.tar.bz2
drakx-backup-do-not-use-f63da47a9c45ebc931441c36c530e7db03386fd4.tar.xz
drakx-backup-do-not-use-f63da47a9c45ebc931441c36c530e7db03386fd4.zip
(Gtk2::ComboBox::set_popdown_strings) clear model before filling the list
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r--perl-install/ugtk2.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm
index 4a3bfb86c..10d5b4aa3 100644
--- a/perl-install/ugtk2.pm
+++ b/perl-install/ugtk2.pm
@@ -1451,6 +1451,7 @@ use common;
# try to get combox <==> option menu mapping
sub set_popdown_strings {
my ($w, @strs) = @_;
+ $w->get_model->clear;
# keep string list around for ->set_text compatibilty helper
$w->{strings} = \@strs;
$w->append_text($_) foreach @strs;