}
+ // Process the DESCRIPTION values.
+
+ if (DescriptionList.size() > 0){
+
+ for (int DescriptionListSeek = 0; DescriptionListSeek < DescriptionList.size() > 0;
+ DescriptionListSeek++){
+
+ DataLine += "DESCRIPTION";
+
+ if (DescriptionListAltRep[DescriptionListSeek].size() > 0){
+
+ DataLine += ";ALTREP=\"";
+ DataLine += DescriptionListAltRep[DescriptionListSeek];
+ DataLine += "\"";
+
+ }
+
+ if (DescriptionListLanguage[DescriptionListSeek].size() > 0){
+
+ DataLine += ";LANGUAGE=";
+ DataLine += DescriptionListLanguage[DescriptionListSeek];
+
+ }
+
+ if (DescriptionListTokens[DescriptionListSeek].size() > 0){
+
+ DataLine += ";";
+ DataLine += DescriptionListTokens[DescriptionListSeek];
+
+ }
+
+ DataLine += ":";
+ DataLine += DescriptionList[DescriptionListSeek];
+ DataLine += "\n";
+
+ DataLineProcessed = OutputText(&DataLine);
+
+ *SaveData += DataLineProcessed;
+
+ DataLine.clear();
+ DataLineProcessed.clear();
+
+ }
+
+ }
+
*SaveData += "END:VJOURNAL\n";
}
\ No newline at end of file
"CONTACT:First Contact\n"
"CONTACT;ALTREP=\"null:nodata\";LANGUAGE=en-GB:Second Contact\n"
"CONTACT;ZEBRAS=NO:Third Contact\n"
+ "DESCRIPTION:First Journal Entry Description\n"
+ "DESCRIPTION;ALTREP=\"null:nodata\";LANGUAGE=en-GB:This is the second journal de\n"
+ " scription.\n"
+ "DESCRIPTION;ZEBRAS=NO:This is the third journal description.\n"
"END:VJOURNAL\n"
"END:VCALENDAR";