author | zautrix <zautrix> | 2005-06-29 12:54:34 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-06-29 12:54:34 (UTC) |
commit | f29d4de96b6fd334ff64f11731f5d4899b69f124 (patch) (unidiff) | |
tree | 389555e0e180443d946174b5e97b153047935d16 | |
parent | 4c19dcc4e5b45d9cf04c91af82f00b764b01e985 (diff) | |
download | kdepimpi-f29d4de96b6fd334ff64f11731f5d4899b69f124.zip kdepimpi-f29d4de96b6fd334ff64f11731f5d4899b69f124.tar.gz kdepimpi-f29d4de96b6fd334ff64f11731f5d4899b69f124.tar.bz2 |
nf
-rw-r--r-- | bin/kdepim/WhatsNew.txt | 9 | ||||
-rw-r--r-- | korganizer/koeventviewer.cpp | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/bin/kdepim/WhatsNew.txt b/bin/kdepim/WhatsNew.txt index 0dad1c1..54376a0 100644 --- a/bin/kdepim/WhatsNew.txt +++ b/bin/kdepim/WhatsNew.txt | |||
@@ -1,5 +1,14 @@ | |||
1 | Info about the changes in new versions of KDE-Pim/Pi | 1 | Info about the changes in new versions of KDE-Pim/Pi |
2 | 2 | ||
3 | ********** VERSION 2.1.11 ************ | ||
4 | |||
5 | KO/Pi: | ||
6 | Because we can have many calendars now in KO/Pi we can have more than one journal entry per day. | ||
7 | Added features to handle (and add ) more than one journal entry per day. | ||
8 | Added option for a journal title. | ||
9 | |||
10 | Added info about the calendar, the item belongs to, to the event/todo/journal viewer. | ||
11 | |||
3 | ********** VERSION 2.1.10 ************ | 12 | ********** VERSION 2.1.10 ************ |
4 | 13 | ||
5 | KO/Pi: | 14 | KO/Pi: |
diff --git a/korganizer/koeventviewer.cpp b/korganizer/koeventviewer.cpp index 8c1e5b2..52c5247 100644 --- a/korganizer/koeventviewer.cpp +++ b/korganizer/koeventviewer.cpp | |||
@@ -716,7 +716,7 @@ void KOEventViewer::formatReadOnly(Incidence *event) | |||
716 | { | 716 | { |
717 | int id = event->calID(); | 717 | int id = event->calID(); |
718 | if ( id > 1 ) { | 718 | if ( id > 1 ) { |
719 | addTag("p", i18n("Calendar:")+" " + KOPrefs::instance()->getCalendar( id )->mName ); | 719 | addTag("p", "<em>("+i18n("Calendar:")+" " + KOPrefs::instance()->getCalendar( id )->mName + ")</em>"); |
720 | } | 720 | } |
721 | if (event->isReadOnly()) { | 721 | if (event->isReadOnly()) { |
722 | addTag("p","<em>(" + i18n("read-only") + ")</em>"); | 722 | addTag("p","<em>(" + i18n("read-only") + ")</em>"); |