summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakconnect
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-05-13 19:19:32 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-05-13 19:19:32 +0000
commit38ebf15e2915bbec17121f0f89ea846b67b5a4f4 (patch)
tree2759602803cec64c9ec4b0d9fc89cde6e8b2638c /perl-install/standalone/drakconnect
parente4ac664c1fb2b9a7abc26567464ac91b2f0c0056 (diff)
downloaddrakx-38ebf15e2915bbec17121f0f89ea846b67b5a4f4.tar
drakx-38ebf15e2915bbec17121f0f89ea846b67b5a4f4.tar.gz
drakx-38ebf15e2915bbec17121f0f89ea846b67b5a4f4.tar.bz2
drakx-38ebf15e2915bbec17121f0f89ea846b67b5a4f4.tar.xz
drakx-38ebf15e2915bbec17121f0f89ea846b67b5a4f4.zip
- remove 80% of perl_checker warnings
- gtkbuttonset is not exported by ugtk2
Diffstat (limited to 'perl-install/standalone/drakconnect')
-rwxr-xr-xperl-install/standalone/drakconnect4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakconnect b/perl-install/standalone/drakconnect
index 06b37006c..7b78e7e1f 100755
--- a/perl-install/standalone/drakconnect
+++ b/perl-install/standalone/drakconnect
@@ -61,7 +61,7 @@ MDK::Common::Globals::init(
$::isEmbedded && ref($in) =~ /gtk/ or goto dd;
require ugtk2;
-import ugtk2 qw(:helpers :wrappers :create);
+ugtk2->import(qw(:helpers :wrappers :create));
my $expert_mode = 0;
network::netconnect::read_net_conf('', $netcnx, $netc);
modules::load_category('net');
@@ -450,7 +450,7 @@ Configure them first by clicking on 'Configure'")),1,1,0);
$widget_temp = gtksignal_connect(new Gtk2::Button(ethisup($c) ? N("deactivate now") : N("activate now")),
clicked => sub {
system("/sbin/if" . (ethisup($c) ? "down" : "up") . " eth$c");
- gtkbuttonset($_[0], ethisup($c) ? N("deactivate now") : N("activate now"));
+ ugtk2::gtkbuttonset($_[0], ethisup($c) ? N("deactivate now") : N("activate now"));
});
} else {
$widget_temp = N("This interface has not been configured yet.\nLaunch the configuration wizard in the main window");