diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-01-14 15:06:21 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-01-14 15:06:21 +0000 |
commit | b78808c5d103a2a9041fe495868e1f8623c40066 (patch) | |
tree | 84a063d2d1a6bca954b1fa41578763082067a82a /perl-install/standalone/harddrake2 | |
parent | 42d3f122722d15c0831a044b45f96170cd1cf2b0 (diff) | |
download | drakx-b78808c5d103a2a9041fe495868e1f8623c40066.tar drakx-b78808c5d103a2a9041fe495868e1f8623c40066.tar.gz drakx-b78808c5d103a2a9041fe495868e1f8623c40066.tar.bz2 drakx-b78808c5d103a2a9041fe495868e1f8623c40066.tar.xz drakx-b78808c5d103a2a9041fe495868e1f8623c40066.zip |
fix crash on opening help windows
Diffstat (limited to 'perl-install/standalone/harddrake2')
-rwxr-xr-x | perl-install/standalone/harddrake2 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/harddrake2 b/perl-install/standalone/harddrake2 index 4acb18dd0..bb9e5df32 100755 --- a/perl-install/standalone/harddrake2 +++ b/perl-install/standalone/harddrake2 @@ -204,10 +204,10 @@ my @menu_items = my $info = lookup_field($_); if_($info->[0], formatAlaTeX(qq(<span foreground="royalblue3">$info->[0]:</span> $info->[1]))); } sort keys %$current_device), - { use_markup => 1, if_(!$::isEmbedded, transient => $w->{window}), height => 400, scroll => 1 }); + { use_markup => 1, if_(!$::isEmbedded, transient => $w->{rwindow}), height => 400, scroll => 1 }); } else { - create_dialog(N("Select a device!"), N("Once you've selected a device, you'll be able to see the device information in fields displayed on the right frame (\"Information\")"), { if_(!$::isEmbedded, transient => $w->{window}) }); + create_dialog(N("Select a device!"), N("Once you've selected a device, you'll be able to see the device information in fields displayed on the right frame (\"Information\")"), { if_(!$::isEmbedded, transient => $w->{rwindow}) }); } }, undef, '<Item>' @@ -220,7 +220,7 @@ my @menu_items = #-PO: Do not alter the <span ..> and </span> tags N("This is HardDrake, a %s hardware configuration tool.\n<span foreground=\"royalblue3\">Version:</span> %s <span foreground=\"royalblue3\">Author:</span> Thierry Vignaud <tvignaud\@mandrakesoft.com>\n\n", $distro_name, $harddrake::data::version) . "\n" . - formatAlaTeX($::license), { use_markup => 1, if_(!$::isEmbedded, transient => $w->{window}) }); + formatAlaTeX($::license), { use_markup => 1, if_(!$::isEmbedded, transient => $w->{rwindow}) }); }, undef, '<Item>' ] ); |