diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-01-11 08:42:10 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-01-11 08:42:10 +0000 |
commit | a6f333208a377a318b63ceb1f856fb8b876798d9 (patch) | |
tree | 3f99f71e3a6d3c1d365ee61d207633ca4c6e5d46 /perl-install/install_gtk.pm | |
parent | 44bf33a127efeb9dff9518edeef72e146d712aae (diff) | |
download | drakx-a6f333208a377a318b63ceb1f856fb8b876798d9.tar drakx-a6f333208a377a318b63ceb1f856fb8b876798d9.tar.gz drakx-a6f333208a377a318b63ceb1f856fb8b876798d9.tar.bz2 drakx-a6f333208a377a318b63ceb1f856fb8b876798d9.tar.xz drakx-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.pm | 6 |
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; } #------------------------------------------------------------------------------ |