diff options
author | Joseph Koshy <jkoshy@FreeBSD.org> | 1999-04-21 03:21:17 +0000 |
---|---|---|
committer | Joseph Koshy <jkoshy@FreeBSD.org> | 1999-04-21 03:21:17 +0000 |
commit | 3d41f16670f3ecbc809209c75a6571d87a054a96 (patch) | |
tree | 2141f7fb1ae4262975d683bd0796f24e0e18c752 /deskutils/korganizer/files/patch-aa | |
parent | Move WWW to DESCR from Makefile ... (diff) |
Upgrade 'korganizer' to v1.1.
PR: ports/10141
Submitted by: Palle Girgensohn <girgen@partitur.se>
Notes
Notes:
svn path=/head/; revision=18040
Diffstat (limited to 'deskutils/korganizer/files/patch-aa')
-rw-r--r-- | deskutils/korganizer/files/patch-aa | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/deskutils/korganizer/files/patch-aa b/deskutils/korganizer/files/patch-aa index f74912f05e9a..e69de29bb2d1 100644 --- a/deskutils/korganizer/files/patch-aa +++ b/deskutils/korganizer/files/patch-aa @@ -1,36 +0,0 @@ ---- src/calobject.cpp.orig Fri Oct 2 13:47:51 1998 -+++ src/calobject.cpp Fri Oct 2 13:49:31 1998 -@@ -79,13 +79,17 @@ - tmpStr = config->readEntry("Time Zone"); - int dstSetting = config->readNumEntry("Daylight Savings", 0); - extern long int timezone; -+#if 0 - extern int daylight; -+#endif - time_t curtime; - curtime = time(0); - localtime(&curtime); - int hourOff = - ((timezone / 60) / 60); -+#if 0 - if (daylight) - hourOff += 1; -+#endif - QString tzStr; - tzStr.sprintf("%.2d%.2d", - hourOff, -@@ -96,6 +100,7 @@ - config->writeEntry("Time Zone", tzStr.data()); - } - -+#if 0 - // if daylight savings has changed since last load time, we need - // to rewrite these settings to the config file. - if ((daylight && !dstSetting) || -@@ -103,6 +108,7 @@ - config->writeEntry("Time Zone", tzStr.data()); - config->writeEntry("Daylight Savings", daylight); - } -+#endif - - setTimeZone(tzStr.data()); - |