author | zautrix <zautrix> | 2005-06-15 21:00:30 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-06-15 21:00:30 (UTC) |
commit | 4a9b5ad578e991f6216dc0556022a76223165f15 (patch) (side-by-side diff) | |
tree | 41017358760a4db4b47e38a0364c219ed4760411 /korganizer/kotodoviewitem.cpp | |
parent | e74483434835ad799b1a6880ae4576aacb14624a (diff) | |
download | kdepimpi-4a9b5ad578e991f6216dc0556022a76223165f15.zip kdepimpi-4a9b5ad578e991f6216dc0556022a76223165f15.tar.gz kdepimpi-4a9b5ad578e991f6216dc0556022a76223165f15.tar.bz2 |
fixxx
Diffstat (limited to 'korganizer/kotodoviewitem.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | korganizer/kotodoviewitem.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/korganizer/kotodoviewitem.cpp b/korganizer/kotodoviewitem.cpp index 748f3e4..f62aab8 100644 --- a/korganizer/kotodoviewitem.cpp +++ b/korganizer/kotodoviewitem.cpp @@ -142,32 +142,33 @@ void KOTodoViewItem::construct() if ( !mTodo->doesFloat()) { keyt = mTodo->dtStartTimeStr(); QTime t = mTodo->dtStart().time(); skeyt.sprintf("%02d%02d",t.hour(),t.minute()); } } } setText(5,keyd); setText(6,keyt); setSortKey(5,skeyd); setSortKey(6,skeyt); setText(7,mTodo->cancelled() ? i18n("Yes") : i18n("No")); setText(8,mTodo->categoriesStr()); + setText(9,KOPrefs::instance()->calName( mTodo->calID())); #if 0 // Find sort id in description. It's the text behind the last '#' character // found in the description. White spaces are removed from beginning and end // of sort id. int pos = mTodo->description().findRev('#'); if (pos < 0) { setText(6,""); } else { QString str = mTodo->description().mid(pos+1); str.stripWhiteSpace(); setText(6,str); } #endif m_known = false; |