diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-18 01:41:34 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-24 11:00:41 +0100 |
commit | a2e2b6f40d41586bf073bd1c156ec8b8eb7ef27d (patch) | |
tree | e49a5db53eb1132ddda5bcf1f595819c51765785 /bin/drakconnect-old | |
parent | 31f5f934a335a0fe639ec7925225d2731bec12b3 (diff) | |
download | drakx-net-a2e2b6f40d41586bf073bd1c156ec8b8eb7ef27d.tar drakx-net-a2e2b6f40d41586bf073bd1c156ec8b8eb7ef27d.tar.gz drakx-net-a2e2b6f40d41586bf073bd1c156ec8b8eb7ef27d.tar.bz2 drakx-net-a2e2b6f40d41586bf073bd1c156ec8b8eb7ef27d.tar.xz drakx-net-a2e2b6f40d41586bf073bd1c156ec8b8eb7ef27d.zip |
Gtk3::ComboBox->new_text => Gtk3::ComboBoxText->new
Diffstat (limited to 'bin/drakconnect-old')
-rwxr-xr-x | bin/drakconnect-old | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/drakconnect-old b/bin/drakconnect-old index 10d5a0b..9c13fe0 100755 --- a/bin/drakconnect-old +++ b/bin/drakconnect-old @@ -224,7 +224,7 @@ Configure them first by clicking on 'Configure'"))); $vbox_local->pack_start($infos[2*$i], 1, 1, 0); my $c; if (defined $j->[2]) { - $c = Gtk3::ComboBox->new_text; + $c = Gtk3::ComboBoxText->new; $c->set_popdown_strings(@{$j->[2]}); $infos[2*$i+1] = $c->entry; $infos[2*$i]->pack_start($c,0,0,0); |