diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-03-27 23:27:22 +0900 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-04-01 18:36:29 +0200 |
commit | 9d6e89d4db97c351466d41b958605091075563b5 (patch) | |
tree | 801dd8129e47d87632adcbe4510b5467dc56d9cf /libkcal/icalformat.cpp | |
parent | 77ffd0e710a5ea62b3c36e37cf82fd66df5b6512 (diff) | |
download | tdepim-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.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) { |