diff options
author | damien <damien@mandriva.com> | 2001-10-30 20:11:31 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-10-30 20:11:31 +0000 |
commit | 22d58ed5438fde649c05c3397e577c98e9b8e0c5 (patch) | |
tree | 36ebf3e101943920fdeb1541c17f99b818893630 /perl-install/standalone/drakproxy | |
parent | 72cdfb169816a60385535eceb9f40292e7e383e7 (diff) | |
download | drakx-backup-do-not-use-22d58ed5438fde649c05c3397e577c98e9b8e0c5.tar drakx-backup-do-not-use-22d58ed5438fde649c05c3397e577c98e9b8e0c5.tar.gz drakx-backup-do-not-use-22d58ed5438fde649c05c3397e577c98e9b8e0c5.tar.bz2 drakx-backup-do-not-use-22d58ed5438fde649c05c3397e577c98e9b8e0c5.tar.xz drakx-backup-do-not-use-22d58ed5438fde649c05c3397e577c98e9b8e0c5.zip |
corrected ref($in) =~ /gtk/
Diffstat (limited to 'perl-install/standalone/drakproxy')
-rwxr-xr-x | perl-install/standalone/drakproxy | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/standalone/drakproxy b/perl-install/standalone/drakproxy index 426d73b9c..acfc159ba 100755 --- a/perl-install/standalone/drakproxy +++ b/perl-install/standalone/drakproxy @@ -34,7 +34,7 @@ $::Wizard_title = _("Proxy handling"); my $in = 'interactive'->vnew('su', 'default'); -if ($::isWizard || ($::isEmbedded && ref($in) =~ /gtk/)) { +if ($::isWizard || ($::isEmbedded && $in->isa('interactive_gtk'))) { proxy::main('', $in); $in->exit(0); } @@ -67,6 +67,9 @@ Gtk->exit(0); #------------------------------------------------- #- $Log$ +#- Revision 1.8 2001/10/30 20:11:31 damien +#- corrected ref($in) =~ /gtk/ +#- #- Revision 1.7 2001/08/09 09:35:37 gc #- use vnew the right way everywhere #- |