author | eilers <eilers> | 2003-09-25 10:57:55 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-09-25 10:57:55 (UTC) |
commit | fe97b1386099f519826392a5734d2bbe567fb786 (patch) (side-by-side diff) | |
tree | 133731278965c30a2c072f1c8e9b2e9a361cb1a1 /libopie2 | |
parent | 5a81b7fa962aa83a10a01706135250f3aba8e315 (diff) | |
download | opie-fe97b1386099f519826392a5734d2bbe567fb786.zip opie-fe97b1386099f519826392a5734d2bbe567fb786.tar.gz opie-fe97b1386099f519826392a5734d2bbe567fb786.tar.bz2 |
Fixed inconsistencies between Description and NoteFixed inconsistencies between Description and Notess
-rw-r--r-- | libopie2/opiepim/otodo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie2/opiepim/otodo.cpp b/libopie2/opiepim/otodo.cpp index 5a18c37..189bf94 100644 --- a/libopie2/opiepim/otodo.cpp +++ b/libopie2/opiepim/otodo.cpp @@ -287,7 +287,7 @@ QString OTodo::toRichText() const // description if( !description().isEmpty() ){ - text += "<b>" + QObject::tr( "Notes:" ) + "</b><br>"; + text += "<b>" + QObject::tr( "Description:" ) + "</b><br>"; text += Qtopia::escapeString(description() ).replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; } |