summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/pim/today/today.cpp16
1 files changed, 11 insertions, 5 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp
index ad1ec90..62becb0 100644
--- a/core/pim/today/today.cpp
+++ b/core/pim/today/today.cpp
@@ -19,13 +19,12 @@
19 19
20#include "today.h" 20#include "today.h"
21 21
22#include <qpe/timestring.h> 22#include <qpe/timestring.h>
23#include <qpe/config.h> 23#include <qpe/config.h>
24#include <qpe/qcopenvelope_qws.h> 24#include <qpe/qcopenvelope_qws.h>
25//#include <qpe/qprocess.h>
26#include <qpe/resource.h> 25#include <qpe/resource.h>
27#include <qpe/contact.h> 26#include <qpe/contact.h>
28#include <qpe/global.h> 27#include <qpe/global.h>
29#include <qpe/qpeapplication.h> 28#include <qpe/qpeapplication.h>
30 29
31#include <qdir.h> 30#include <qdir.h>
@@ -35,18 +34,16 @@
35#include <qcheckbox.h> 34#include <qcheckbox.h>
36#include <qspinbox.h> 35#include <qspinbox.h>
37#include <qpushbutton.h> 36#include <qpushbutton.h>
38#include <qlabel.h> 37#include <qlabel.h>
39#include <qtimer.h> 38#include <qtimer.h>
40#include <qpixmap.h> 39#include <qpixmap.h>
41//#include <qfileinfo.h>
42#include <qlayout.h> 40#include <qlayout.h>
43#include <qtl.h> 41#include <qtl.h>
44 42
45 43
46//#include <iostream.h>
47#include <unistd.h> 44#include <unistd.h>
48#include <stdlib.h> 45#include <stdlib.h>
49 46
50int MAX_LINES_TASK; 47int MAX_LINES_TASK;
51int MAX_CHAR_CLIP; 48int MAX_CHAR_CLIP;
52int MAX_LINES_MEET; 49int MAX_LINES_MEET;
@@ -382,13 +379,18 @@ void Today::getTodo() {
382 // get overdue todos first 379 // get overdue todos first
383 QValueList<ToDoEvent> overDueList = todo->overDue(); 380 QValueList<ToDoEvent> overDueList = todo->overDue();
384 qBubbleSort(overDueList); 381 qBubbleSort(overDueList);
385 for ( QValueList<ToDoEvent>::Iterator it=overDueList.begin(); 382 for ( QValueList<ToDoEvent>::Iterator it=overDueList.begin();
386 it!=overDueList.end(); ++it ) { 383 it!=overDueList.end(); ++it ) {
387 if (!(*it).isCompleted() && ( ammount < MAX_LINES_TASK) ) { 384 if (!(*it).isCompleted() && ( ammount < MAX_LINES_TASK) ) {
388 tmpout += "<font color=#e00000><b>-" +((*it).description()).mid(0, MAX_CHAR_CLIP) + "</b></font><br>"; 385 QString desc = (*it).summary();
386 if( desc.isEmpty() ) {
387 desc = (*it).description();
388 }
389 tmpout += "<font color=#e00000><b>-" + desc.mid(0, MAX_CHAR_CLIP) + "</b></font><br>";
390
389 ammount++; 391 ammount++;
390 } 392 }
391 } 393 }
392 394
393 // get total number of still open todos 395 // get total number of still open todos
394 QValueList<ToDoEvent> openTodo = todo->rawToDos(); 396 QValueList<ToDoEvent> openTodo = todo->rawToDos();
@@ -397,13 +399,17 @@ void Today::getTodo() {
397 it!=openTodo.end(); ++it ) { 399 it!=openTodo.end(); ++it ) {
398 if (!(*it).isCompleted()){ 400 if (!(*it).isCompleted()){
399 count +=1; 401 count +=1;
400 // not the overdues, we allready got them, and not if we are 402 // not the overdues, we allready got them, and not if we are
401 // over the maxlines 403 // over the maxlines
402 if (!(*it).isOverdue() && ( ammount < MAX_LINES_TASK) ) { 404 if (!(*it).isOverdue() && ( ammount < MAX_LINES_TASK) ) {
403 tmpout += "<b>-</b>" + ((*it).description()).mid(0, MAX_CHAR_CLIP) + "<br>"; 405 QString desc = (*it).summary();
406 if( desc.isEmpty() ) {
407 desc = (*it).description();
408 }
409 tmpout += "<b>-</b>" + desc.mid(0, MAX_CHAR_CLIP) + "<br>";
404 ammount++; 410 ammount++;
405 } 411 }
406 } 412 }
407 } 413 }
408 414
409 415