diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-08-13 09:40:43 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-08-13 09:40:43 +0000 |
commit | 8b81fc1d88b766e2429be9bb5b374bcdb339e353 (patch) | |
tree | 9b7f0f7dd19c68fb443f92ca8850778594d53aa6 | |
parent | ef1bd99c28a497f53fe769836657fccaf0f6b80a (diff) | |
download | drakx-8b81fc1d88b766e2429be9bb5b374bcdb339e353.tar drakx-8b81fc1d88b766e2429be9bb5b374bcdb339e353.tar.gz drakx-8b81fc1d88b766e2429be9bb5b374bcdb339e353.tar.bz2 drakx-8b81fc1d88b766e2429be9bb5b374bcdb339e353.tar.xz drakx-8b81fc1d88b766e2429be9bb5b374bcdb339e353.zip |
(wait_messageW) fix typo in latest commit
-rw-r--r-- | perl-install/interactive/gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm index 46b103807..4d7d4db9d 100644 --- a/perl-install/interactive/gtk.pm +++ b/perl-install/interactive/gtk.pm @@ -840,7 +840,7 @@ sub wait_messageW { title => $title, pop_it => defined $o->{pop_wait_messages} ? $o->{pop_wait_messages} : !$::isInstall, modal => 1, - $::isInstall ? my $w = gtknew('Title1', text => $message, widget_name => 'Banner') : (), + $::isInstall ? (banner => gtknew('Title1', text => $message, widget_name => 'Banner')) : (), no_Window_Manager => exists $o->{no_Window_Manager} ? $o->{no_Window_Manager} : !$::isStandalone, if__($::main_window, transient_for => $::main_window), child => gtknew('VBox', padding => 4, border_width => 10, children => [ |