summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-05-19 15:06:05 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-05-19 15:06:05 +0000
commit15b3f4ac41c81651b94dc0d23d63a02922f1d2b1 (patch)
tree4a241210ed539c7bc15f30375ceba744a92ca3c3
parentbac8f5d0372080e931521c20b68b02b8f3481bcb (diff)
downloadcontrol-center-15b3f4ac41c81651b94dc0d23d63a02922f1d2b1.tar
control-center-15b3f4ac41c81651b94dc0d23d63a02922f1d2b1.tar.gz
control-center-15b3f4ac41c81651b94dc0d23d63a02922f1d2b1.tar.bz2
control-center-15b3f4ac41c81651b94dc0d23d63a02922f1d2b1.tar.xz
control-center-15b3f4ac41c81651b94dc0d23d63a02922f1d2b1.zip
fix #3948
-rwxr-xr-xclock.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/clock.pl b/clock.pl
index d92f44a7..e92a6141 100755
--- a/clock.pl
+++ b/clock.pl
@@ -33,7 +33,7 @@ my $button_time = Gtk2::Button->new(N("Time Zone"));
$button_time->signal_connect(clicked => sub {
local $::isEmbedded = 0; # to prevent sub window embedding
$in->{timezone} = {};
- add2hash($in->{timezone}, timezone::read(''));
+ add2hash($in->{timezone}, timezone::read());
my $timezone = $in->{timezone}{timezone};
$in->{timezone}{timezone} = $in->ask_from_treelist(N("Timezone - DrakClock"), N("Which is your timezone?"), '/', [ timezone::getTimeZones('') ], $timezone);
if (defined($in->{timezone}{timezone})) {