author | zautrix <zautrix> | 2005-04-17 16:49:25 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-04-17 16:49:25 (UTC) |
commit | 70b45fe97813c4fd336b7ca8fdedab13f9c2e039 (patch) (unidiff) | |
tree | 37e89cf6cc411af8c646003fcfb0d5975f38272c /libkcal | |
parent | 02dc5d8173393d2069951a5f847db5bdf69137f6 (diff) | |
download | kdepimpi-70b45fe97813c4fd336b7ca8fdedab13f9c2e039.zip kdepimpi-70b45fe97813c4fd336b7ca8fdedab13f9c2e039.tar.gz kdepimpi-70b45fe97813c4fd336b7ca8fdedab13f9c2e039.tar.bz2 |
fixes
-rw-r--r-- | libkcal/incidence.cpp | 4 | ||||
-rw-r--r-- | libkcal/incidence.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/libkcal/incidence.cpp b/libkcal/incidence.cpp index 78fa24f..9c35b1d 100644 --- a/libkcal/incidence.cpp +++ b/libkcal/incidence.cpp | |||
@@ -371,24 +371,28 @@ void Incidence::setCategories(const QString &catStr) | |||
371 | updated(); | 371 | updated(); |
372 | } | 372 | } |
373 | 373 | ||
374 | QStringList Incidence::categories() const | 374 | QStringList Incidence::categories() const |
375 | { | 375 | { |
376 | return mCategories; | 376 | return mCategories; |
377 | } | 377 | } |
378 | 378 | ||
379 | QString Incidence::categoriesStr() | 379 | QString Incidence::categoriesStr() |
380 | { | 380 | { |
381 | return mCategories.join(","); | 381 | return mCategories.join(","); |
382 | } | 382 | } |
383 | QString Incidence::categoriesStrWithSpace() | ||
384 | { | ||
385 | return mCategories.join(", "); | ||
386 | } | ||
383 | 387 | ||
384 | void Incidence::setRelatedToUid(const QString &relatedToUid) | 388 | void Incidence::setRelatedToUid(const QString &relatedToUid) |
385 | { | 389 | { |
386 | if (mReadOnly) return; | 390 | if (mReadOnly) return; |
387 | mRelatedToUid = relatedToUid; | 391 | mRelatedToUid = relatedToUid; |
388 | } | 392 | } |
389 | 393 | ||
390 | QString Incidence::relatedToUid() const | 394 | QString Incidence::relatedToUid() const |
391 | { | 395 | { |
392 | return mRelatedToUid; | 396 | return mRelatedToUid; |
393 | } | 397 | } |
394 | 398 | ||
diff --git a/libkcal/incidence.h b/libkcal/incidence.h index 60070a2..327e7dd 100644 --- a/libkcal/incidence.h +++ b/libkcal/incidence.h | |||
@@ -149,24 +149,25 @@ class Incidence : public IncidenceBase | |||
149 | void setSummary(const QString &summary); | 149 | void setSummary(const QString &summary); |
150 | /** returns a reference to the event's summary. */ | 150 | /** returns a reference to the event's summary. */ |
151 | QString summary() const; | 151 | QString summary() const; |
152 | 152 | ||
153 | /** set event's applicable categories */ | 153 | /** set event's applicable categories */ |
154 | void setCategories(const QStringList &categories); | 154 | void setCategories(const QStringList &categories); |
155 | /** set event's categories based on a comma delimited string */ | 155 | /** set event's categories based on a comma delimited string */ |
156 | void setCategories(const QString &catStr); | 156 | void setCategories(const QString &catStr); |
157 | /** return categories in a list */ | 157 | /** return categories in a list */ |
158 | QStringList categories() const; | 158 | QStringList categories() const; |
159 | /** return categories as a comma separated string */ | 159 | /** return categories as a comma separated string */ |
160 | QString categoriesStr(); | 160 | QString categoriesStr(); |
161 | QString categoriesStrWithSpace(); | ||
161 | 162 | ||
162 | /** point at some other event to which the event relates. This function should | 163 | /** point at some other event to which the event relates. This function should |
163 | * only be used when constructing a calendar before the related Event | 164 | * only be used when constructing a calendar before the related Event |
164 | * exists. */ | 165 | * exists. */ |
165 | void setRelatedToUid(const QString &); | 166 | void setRelatedToUid(const QString &); |
166 | /** what event does this one relate to? This function should | 167 | /** what event does this one relate to? This function should |
167 | * only be used when constructing a calendar before the related Event | 168 | * only be used when constructing a calendar before the related Event |
168 | * exists. */ | 169 | * exists. */ |
169 | QString relatedToUid() const; | 170 | QString relatedToUid() const; |
170 | /** point at some other event to which the event relates */ | 171 | /** point at some other event to which the event relates */ |
171 | void setRelatedTo(Incidence *relatedTo); | 172 | void setRelatedTo(Incidence *relatedTo); |
172 | /** what event does this one relate to? */ | 173 | /** what event does this one relate to? */ |