diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-02-08 17:50:15 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-02-08 17:50:15 +0000 |
commit | 092a51022843b9217bbbe8cbd2affc312450523e (patch) | |
tree | 9ae8eec1552f3d5c9ebfacf89c72db4c1d6907d8 /perl-install/install_steps_gtk.pm | |
parent | 5f68450cc9d2f7c543a5d3cd5b8351a83ddffb4b (diff) | |
download | drakx-092a51022843b9217bbbe8cbd2affc312450523e.tar drakx-092a51022843b9217bbbe8cbd2affc312450523e.tar.gz drakx-092a51022843b9217bbbe8cbd2affc312450523e.tar.bz2 drakx-092a51022843b9217bbbe8cbd2affc312450523e.tar.xz drakx-092a51022843b9217bbbe8cbd2affc312450523e.zip |
move Xtest() and setMouseLive() out of c/stuff to xf86misc::main
so that we can use them (esp. setMouseLive) in standalone without making drakxtools-newt
require xfree libs
Diffstat (limited to 'perl-install/install_steps_gtk.pm')
-rw-r--r-- | perl-install/install_steps_gtk.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm index f3abe2110..df9119703 100644 --- a/perl-install/install_steps_gtk.pm +++ b/perl-install/install_steps_gtk.pm @@ -12,6 +12,7 @@ use vars qw(@ISA); use pkgs; use install_steps_interactive; use interactive::gtk; +use xf86misc::main; use common; use ugtk2 qw(:helpers :wrappers :create); use devices; @@ -63,7 +64,7 @@ sub new($$) { foreach (1..60) { sleep 1; log::l("Server died"), return 0 if !fuzzy_pidofs(qr/\b$server\b/); - $nb++ if c::Xtest($wanted_DISPLAY); + $nb++ if xf86misc::main::Xtest($wanted_DISPLAY); if ($nb > 2) { #- one succeeded test is not enough :-( $ugtk2::force_focus = 1; log::l("AFAIK X server is up"); |