summaryrefslogtreecommitdiffstats
path: root/libkcal/icalformat.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2019-03-27 23:27:22 +0900
committerSlávek Banko <slavek.banko@axis.cz>2019-04-01 18:36:29 +0200
commit9d6e89d4db97c351466d41b958605091075563b5 (patch)
tree801dd8129e47d87632adcbe4510b5467dc56d9cf /libkcal/icalformat.cpp
parent77ffd0e710a5ea62b3c36e37cf82fd66df5b6512 (diff)
downloadtdepim-9d6e89d4db97c351466d41b958605091075563b5.tar.gz
tdepim-9d6e89d4db97c351466d41b958605091075563b5.zip
Fixed bug in libkcal related to timezones in DT field.
Fixed execution of libkcal tests. This resolves bug 2719. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 48af72cbe8a4f0cc22de3e2ceda5db47ca922759)
Diffstat (limited to 'libkcal/icalformat.cpp')
-rw-r--r--libkcal/icalformat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libkcal/icalformat.cpp b/libkcal/icalformat.cpp
index 52f4777ea..ab0ab5323 100644
--- a/libkcal/icalformat.cpp
+++ b/libkcal/icalformat.cpp
@@ -149,7 +149,7 @@ bool ICalFormat::fromRawString( Calendar *cal, const TQCString &text )
// TODO: Handle more than one VCALENDAR or non-VCALENDAR top components
icalcomponent *calendar;
- // Let's defend const correctness until the very gates of hell^Wlibical
+ // Let's defend const correctness until the very gates of hell
calendar = icalcomponent_new_from_string( const_cast<char*>( (const char*)text ) );
// kdDebug(5800) << "Error: " << icalerror_perror() << endl;
if (!calendar) {