summaryrefslogtreecommitdiffstats
path: root/perl-install/install_gtk.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-01-11 08:42:10 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-01-11 08:42:10 +0000
commita6f333208a377a318b63ceb1f856fb8b876798d9 (patch)
tree3f99f71e3a6d3c1d365ee61d207633ca4c6e5d46 /perl-install/install_gtk.pm
parent44bf33a127efeb9dff9518edeef72e146d712aae (diff)
downloaddrakx-backup-do-not-use-a6f333208a377a318b63ceb1f856fb8b876798d9.tar
drakx-backup-do-not-use-a6f333208a377a318b63ceb1f856fb8b876798d9.tar.gz
drakx-backup-do-not-use-a6f333208a377a318b63ceb1f856fb8b876798d9.tar.bz2
drakx-backup-do-not-use-a6f333208a377a318b63ceb1f856fb8b876798d9.tar.xz
drakx-backup-do-not-use-a6f333208a377a318b63ceb1f856fb8b876798d9.zip
don't fake a ugtk2, use pure mygtk2 instead
Diffstat (limited to 'perl-install/install_gtk.pm')
-rw-r--r--perl-install/install_gtk.pm6
1 files changed, 2 insertions, 4 deletions
diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm
index a1134de91..dbcebdbfb 100644
--- a/perl-install/install_gtk.pm
+++ b/perl-install/install_gtk.pm
@@ -176,15 +176,13 @@ sub create_logo_window {
my $file = $o->{meta_class} eq 'firewall' ? "logo-mandrake-Firewall.png" : "logo-mandrake.png";
- my $w = bless {}, 'ugtk2';
- $w->{rwindow} = $w->{window} =
+ $o->{logo_window} =
gtknew('Window',
width => $::logowidth, height => $::logoheight,
widget_name => 'logo',
child => gtknew('Image', file => $file),
);
- $w->show;
- $o->{logo_window} = $w;
+ $o->{logo_window}->show;
}
#------------------------------------------------------------------------------