diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-05-19 15:06:05 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-05-19 15:06:05 +0000 |
commit | 15b3f4ac41c81651b94dc0d23d63a02922f1d2b1 (patch) | |
tree | 4a241210ed539c7bc15f30375ceba744a92ca3c3 /clock.pl | |
parent | bac8f5d0372080e931521c20b68b02b8f3481bcb (diff) | |
download | control-center-15b3f4ac41c81651b94dc0d23d63a02922f1d2b1.tar control-center-15b3f4ac41c81651b94dc0d23d63a02922f1d2b1.tar.gz control-center-15b3f4ac41c81651b94dc0d23d63a02922f1d2b1.tar.bz2 control-center-15b3f4ac41c81651b94dc0d23d63a02922f1d2b1.tar.xz control-center-15b3f4ac41c81651b94dc0d23d63a02922f1d2b1.zip |
fix #3948
Diffstat (limited to 'clock.pl')
-rwxr-xr-x | clock.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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})) { |