diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-03-27 23:27:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-03-27 23:27:22 +0900 |
commit | 48af72cbe8a4f0cc22de3e2ceda5db47ca922759 (patch) | |
tree | 6640f79522e180b49d517aba75778b71b46b4d97 /libkcal/icalformat.cpp | |
parent | ce47e20ed3f172bb04a2d4055a9326fec1c879b0 (diff) | |
download | tdepim-48af72cbe8a4f0cc22de3e2ceda5db47ca922759.tar.gz tdepim-48af72cbe8a4f0cc22de3e2ceda5db47ca922759.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>
Diffstat (limited to 'libkcal/icalformat.cpp')
-rw-r--r-- | libkcal/icalformat.cpp | 2 |
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) { |