diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-01-11 11:45:24 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-01-11 11:45:24 +0000 |
commit | ee6ad956214f83f189b5e32687efa0859cd61efe (patch) | |
tree | 2d51b17ca662ca7bd7a2c7bf1d637e5e69e5c5fc /perl-install/interactive | |
parent | 585ad36263ff6e0348b45b9b3c3256533203cde8 (diff) | |
download | drakx-ee6ad956214f83f189b5e32687efa0859cd61efe.tar drakx-ee6ad956214f83f189b5e32687efa0859cd61efe.tar.gz drakx-ee6ad956214f83f189b5e32687efa0859cd61efe.tar.bz2 drakx-ee6ad956214f83f189b5e32687efa0859cd61efe.tar.xz drakx-ee6ad956214f83f189b5e32687efa0859cd61efe.zip |
change set_main_window_size() prototype
Diffstat (limited to 'perl-install/interactive')
-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 a7d621776..7526c8a8b 100644 --- a/perl-install/interactive/gtk.pm +++ b/perl-install/interactive/gtk.pm @@ -596,7 +596,7 @@ sub ask_fromW { $mainw->{box_allow_grow} = 1; my $pack = create_box_with_title($mainw, @{$common->{messages}}); - ugtk2::set_main_window_size($mainw) if $mainw->{pop_it} && (@$l || $mainw->{box_size} == 200); + ugtk2::set_main_window_size($mainw->{window}) if $mainw->{pop_it} && (@$l || $mainw->{box_size} == 200); my @before_widgets_advanced = ( (map { { grow => 0, real_w => Gtk2::WrappedLabel->new($_) } } @{$common->{advanced_messages}}), |