diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-03-23 19:50:35 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-03-23 19:50:35 +0000 |
commit | 30d441e3847eb11c5de781503af64d38358f5408 (patch) | |
tree | b5a904657487cd5dfec16ca195ee72b9098a086f /perl-install/standalone/drakclock | |
parent | 6fa4abc16d1b016f54bd1d6931d635a93a272232 (diff) | |
download | drakx-backup-do-not-use-30d441e3847eb11c5de781503af64d38358f5408.tar drakx-backup-do-not-use-30d441e3847eb11c5de781503af64d38358f5408.tar.gz drakx-backup-do-not-use-30d441e3847eb11c5de781503af64d38358f5408.tar.bz2 drakx-backup-do-not-use-30d441e3847eb11c5de781503af64d38358f5408.tar.xz drakx-backup-do-not-use-30d441e3847eb11c5de781503af64d38358f5408.zip |
perl_checker cleanups
Diffstat (limited to 'perl-install/standalone/drakclock')
-rwxr-xr-x | perl-install/standalone/drakclock | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakclock b/perl-install/standalone/drakclock index 7b13dd764..482548d38 100755 --- a/perl-install/standalone/drakclock +++ b/perl-install/standalone/drakclock @@ -93,7 +93,7 @@ $my_win->{window}->add(gtknew('VBox', border_width => $::isEmbedded ? 0 : 5, chi 1, gtknew('Frame', text => N("Timezone"), shadow_type => 'etched_in', child => gtknew('VBox', border_width => 5, children_tight => [ $label_timezone, - $button_time])), + $button_time ])), ]), ]), 0, create_okcancel(my $w = @@ -168,7 +168,7 @@ $time_box->set_direction('ltr'); my $servers = get_server(); $combo_ntpserver->set_popdown_strings(@$servers); -if (-e $ntpfile && ( -e $ntpdsystemdlock || -e $ntpdlock)) { +if (-e $ntpfile && (-e $ntpdsystemdlock || -e $ntpdlock)) { $ntp = timezone::ntp_server(); $ntp and ntp_widget_state(1); my $fullntp = $ntp; |