X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fobjects%2Fcalendarevent%2FCalendarEvent.cpp;h=ee003f93f1e72e7558b05449bb88505452f7429c;hb=c5d6db0c41d2f729b771b2a1fa3617bb31d457e4;hp=b266d191768407ddf56ef532de07ccf392decec4;hpb=a635d33edace32e152c96b25e364e3481850cb9f;p=xestiacalendar%2F.git diff --git a/source/objects/calendarevent/CalendarEvent.cpp b/source/objects/calendarevent/CalendarEvent.cpp index b266d19..ee003f9 100644 --- a/source/objects/calendarevent/CalendarEvent.cpp +++ b/source/objects/calendarevent/CalendarEvent.cpp @@ -146,7 +146,7 @@ void CalendarEventObject::ProcessData(){ DataReceived = ProcessTextVectors(&ObjectName, &ObjectData, false, "DTSTAMP"); - // Process the data. + // Process the data from DTSTAMP. if (DataReceived.begin() != DataReceived.end()){ @@ -161,5 +161,25 @@ void CalendarEventObject::ProcessData(){ DateTimeStampData = DataReceived.begin()->second; } + + // Get the Unique ID (UID). + + DataReceived = ProcessTextVectors(&ObjectName, &ObjectData, false, "UID"); + + // Process the data from DTSTAMP. + + if (DataReceived.begin() != DataReceived.end()){ + + try { + UniqueIDTokens = DataReceived.begin()->first.substr(4); + } + + catch(const out_of_range &oor){ + // Do nothing as there is no data. + } + + UniqueID = DataReceived.begin()->second; + + } }