diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-09-23 16:54:33 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-09-23 16:54:33 +0000 |
commit | 7cccb9c46539276800f49490a3a21ed0ce2755a4 (patch) | |
tree | 1c6b78844c9bc500b9e22329a1405368f3e550a1 /perl-install | |
parent | f987521c149c0a5b47a8893febcfaa1f92d4504a (diff) | |
download | drakx-7cccb9c46539276800f49490a3a21ed0ce2755a4.tar drakx-7cccb9c46539276800f49490a3a21ed0ce2755a4.tar.gz drakx-7cccb9c46539276800f49490a3a21ed0ce2755a4.tar.bz2 drakx-7cccb9c46539276800f49490a3a21ed0ce2755a4.tar.xz drakx-7cccb9c46539276800f49490a3a21ed0ce2755a4.zip |
(_gtk_any_Window) remove now uneeded "DURING_INSTALL" hack that got
added in r245000 on 2008-09-09
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/mygtk2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index 3499d3f16..458a507cc 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -728,7 +728,7 @@ sub _gtk_any_Window { $w = "Gtk2::$class"->new; } - if ($::isInstall || $ENV{DURING_INSTALL} || $::set_dialog_hint) { + if ($::isInstall || $::set_dialog_hint) { $w->set_type_hint('dialog'); # for matchbox window manager } |