diff options
Diffstat (limited to 'mgaapplet-config')
-rwxr-xr-x | mgaapplet-config | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mgaapplet-config b/mgaapplet-config index cd3e121b..ef96655b 100755 --- a/mgaapplet-config +++ b/mgaapplet-config @@ -27,8 +27,8 @@ use common; BEGIN { unshift @::textdomains, 'mgaonline' } -use mygtk2 qw(gtknew); #- do not import gtkadd which conflicts with ugtk2 version -use ugtk2 qw(:all); +use mygtk3 qw(gtknew); #- do not import gtkadd which conflicts with ugtk2 version +use ugtk3 qw(:all); use mgaonline; use mgaapplet_gui; use interactive; @@ -36,11 +36,11 @@ use interactive; get_product_id(); configure(); -ugtk2::exit(0); +ugtk3::exit(0); sub configure() { - my $w = ugtk2->new(N("Adding an additional package medium"), width => -1); + my $w = ugtk3->new(N("Adding an additional package medium"), width => -1); my %config = getVarsFromSh($config_file); |