summaryrefslogtreecommitdiff
path: root/libopie/todoevent.cpp
authorzecke <zecke>2002-04-27 18:10:51 (UTC)
committer zecke <zecke>2002-04-27 18:10:51 (UTC)
commit0c3303957aa56abb12c0cc4db1493eea5a995f28 (patch) (side-by-side diff)
treea0b7ea7cc21e31a45deca6f0c0d0a2be70fe1b25 /libopie/todoevent.cpp
parent24cfee06815c460fdaa8e34f4b3a7cc9f4b008dd (diff)
downloadopie-0c3303957aa56abb12c0cc4db1493eea5a995f28.zip
opie-0c3303957aa56abb12c0cc4db1493eea5a995f28.tar.gz
opie-0c3303957aa56abb12c0cc4db1493eea5a995f28.tar.bz2
Update TODO
Update todoevent.cpp I almost forgot about this \n -> <br> inside the RichText remove oconfig cause it was bogus. We can achieve the same with Config(path, Config::File );
Diffstat (limited to 'libopie/todoevent.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/todoevent.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie/todoevent.cpp b/libopie/todoevent.cpp
index 5537b77..b820150 100644
--- a/libopie/todoevent.cpp
+++ b/libopie/todoevent.cpp
@@ -131,7 +131,7 @@ QString ToDoEvent::richText() const
// Description of the todo
if ( !description().isEmpty() ){
text += "<b>" + QObject::tr( "Description:" ) + "</b><br>";
- text += Qtopia::escapeString(description() ) + "<br>";
+ text += Qtopia::escapeString(description() ).replace(QRegExp( "[\n]"), "<br>" ) + "<br>";
}
text += "<b>" + QObject::tr( "Priority:") +" </b>"
+ QString::number( priority() ) + "<br>";