diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-05-09 06:07:09 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-05-09 06:07:09 +0000 |
commit | de07139df2d5b9cded0b2c47d222908b5e0118fd (patch) | |
tree | dd57fd42cd379e9f5badd6e5a1b3806c09d7427f | |
parent | a2cc67e764fc10676a37071657b9a1cc861812e3 (diff) | |
download | drakx-de07139df2d5b9cded0b2c47d222908b5e0118fd.tar drakx-de07139df2d5b9cded0b2c47d222908b5e0118fd.tar.gz drakx-de07139df2d5b9cded0b2c47d222908b5e0118fd.tar.bz2 drakx-de07139df2d5b9cded0b2c47d222908b5e0118fd.tar.xz drakx-de07139df2d5b9cded0b2c47d222908b5e0118fd.zip |
better use gtkpack__() rather than gtkadd() when adding multiple widgets
-rwxr-xr-x | perl-install/standalone/draksplash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/draksplash b/perl-install/standalone/draksplash index 9e9bca2f3..2d4a93a78 100755 --- a/perl-install/standalone/draksplash +++ b/perl-install/standalone/draksplash @@ -41,8 +41,8 @@ set_theme('new_theme'); set_resolution(@resolutions); gtkadd($window->{window}, - gtkadd(Gtk2::HBox->new(0, 5), - gtkadd(Gtk2::VBox->new(0, 5), + gtkpack__(Gtk2::HBox->new(0, 5), + gtkpack__(Gtk2::VBox->new(0, 5), gtkadd(Gtk2::Frame->new(N("first step creation")), create_packtable({ col_spacings => 10, row_spacings => 5 }, [ Gtk2::Label->new(N("Theme name")), |