diff options
author | Thierry Vignaud <tv@mageia.org> | 2013-03-05 17:13:54 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2013-03-05 17:13:54 +0000 |
commit | 181f60f3c77fb9193bb2e37760cc11904b8f3875 (patch) | |
tree | 5b6dbd4344967fab522cca2d04fcd365efc4f704 /perl-install/standalone | |
parent | 040cf6d8b9b55d145e941373866fa040476326dc (diff) | |
download | drakx-backup-do-not-use-181f60f3c77fb9193bb2e37760cc11904b8f3875.tar drakx-backup-do-not-use-181f60f3c77fb9193bb2e37760cc11904b8f3875.tar.gz drakx-backup-do-not-use-181f60f3c77fb9193bb2e37760cc11904b8f3875.tar.bz2 drakx-backup-do-not-use-181f60f3c77fb9193bb2e37760cc11904b8f3875.tar.xz drakx-backup-do-not-use-181f60f3c77fb9193bb2e37760cc11904b8f3875.zip |
fixup git/svn add
Diffstat (limited to 'perl-install/standalone')
-rw-r--r-- | perl-install/standalone/display_installer_help | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/perl-install/standalone/display_installer_help b/perl-install/standalone/display_installer_help new file mode 100644 index 000000000..8d1a84d8c --- /dev/null +++ b/perl-install/standalone/display_installer_help @@ -0,0 +1,28 @@ +#!/usr/bin/perl + +# Copyright (C) 2013 Mageia +# Thierry Vignaud +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +use lib qw(/usr/lib/libDrakX); +use interactive; +use any; + +my $in = 'interactive'->vnew('su'); +# so that we popup above drakx: +any::set_wm_hints_if_needed($in); + +$in->display_help_window({ interactive_help_id => $ARGV[0] }); |