diff options
Diffstat (limited to 'perl-install/standalone/drakfont')
-rwxr-xr-x | perl-install/standalone/drakfont | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/drakfont b/perl-install/standalone/drakfont index d0f92deb3..986f8df7d 100755 --- a/perl-install/standalone/drakfont +++ b/perl-install/standalone/drakfont @@ -704,7 +704,7 @@ sub interactive_mode { gtksignal_connect( new Gtk::Button( _("Close") ), clicked => sub { - $::isEmbedded and kill USR1, $::CCPID; + $::isEmbedded and kill 'USR1', $::CCPID; Gtk->main_quit(); } ), @@ -722,7 +722,7 @@ sub interactive_mode { # gtksignal_connect(new Gtk::Button(_(" Help ")), clicked => sub { # ${$central_widget}->destroy(); help() }), # gtksignal_connect(new Gtk::Button(_("Close")), clicked => sub { - # $::isEmbedded and kill USR1, $::CCPID; + # $::isEmbedded and kill 'USR1', $::CCPID; # Gtk->main_quit() }), # ), # ) @@ -740,7 +740,7 @@ sub interactive_mode { # $window1->show_all(); Gtk->main_iteration while Gtk->events_pending; - $::isEmbedded and kill USR2, $::CCPID; + $::isEmbedded and kill 'USR2', $::CCPID; Gtk->main; Gtk->exit(0); } |