| Summary: | changes computer clock to several hours ahead; Audio alarm is non functional | ||
|---|---|---|---|
| Product: | [Applications] korganizer | Reporter: | Scott Robinson <scott.robinson> |
| Component: | embedded | Assignee: | Cornelius Schumacher <schumacher> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Scott Robinson
2003-09-09 17:16:47 UTC
I have the same problem with my Sharp ROM SL5500. The events are as follows: 1) Change/add an event with alarm 2) Alarm Daemon reloads the "mycalendar.ics" file. 3) The displayed clock time in the bottom-right corner switches to UTC time. 4) The "date" command reports the correct time in CST. 5) The "date -u" command reports the UTC time which is now showing in the bottom-right corner. I've been tinkering with the "config_korganizerrc" file by adding "QString,Time & Date/TimeZoneId,US/Central" . But, no luck yet. I copied and renamed "/usr/bin/zoneinfo/america/San_Antonio" to "/etc/localtime" because of the following code. KOrganizer no longer sets my time to UTC. The Alarm Daemon sill does not wake up the Zaurus or beep. The alarms do pop-up when I turn the Zaurus on.
void KOPrefs::setTimeZoneIdDefault()
{
QString zone;
char zonefilebuf[100];
int len = readlink("/etc/localtime",zonefilebuf,100);
if (len > 0 && len < 100) {
zonefilebuf[len] = '\0';
zone = zonefilebuf;
zone = zone.mid(zone.find("zoneinfo/") + 9);
} else {
tzset();
zone = tzname[0];
}
kdDebug () << "----- time zone: " << zone << endl;
mTimeZoneId = zone;
}
Fixed in KO/Pi 1.6.1. Get KO/Pi at www.pi-sync.net |