-rw-r--r-- | core/pim/today/today.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp index f5ed8d2..1cb4881 100644 --- a/core/pim/today/today.cpp +++ b/core/pim/today/today.cpp | |||
@@ -442,24 +442,27 @@ void Today::editEvent(const Event &e) { | |||
442 | */ | 442 | */ |
443 | void Today::startTodo() { | 443 | void Today::startTodo() { |
444 | QCopEnvelope e("QPE/System", "execute(QString)"); | 444 | QCopEnvelope e("QPE/System", "execute(QString)"); |
445 | e << QString("todolist"); | 445 | e << QString("todolist"); |
446 | } | 446 | } |
447 | 447 | ||
448 | /* | 448 | /* |
449 | * launch opiemail | 449 | * launch opiemail |
450 | */ | 450 | */ |
451 | void Today::startMail() { | 451 | void Today::startMail() { |
452 | QCopEnvelope e("QPE/System", "execute(QString)"); | 452 | QCopEnvelope e("QPE/System", "execute(QString)"); |
453 | e << QString("opiemail"); | 453 | e << QString("opiemail"); |
454 | //Right now start both, maybe decide which to rum via config file .. | ||
455 | QCopEnvelope e("QPE/System", "execute(QString)"); | ||
456 | e << QString("qtmail"); | ||
454 | } | 457 | } |
455 | 458 | ||
456 | 459 | ||
457 | Today::~Today() { | 460 | Today::~Today() { |
458 | } | 461 | } |
459 | 462 | ||
460 | /* | 463 | /* |
461 | * Gets the events for the current day, if it should get all dates | 464 | * Gets the events for the current day, if it should get all dates |
462 | */ | 465 | */ |
463 | DateBookEvent::DateBookEvent(const EffectiveEvent &ev, | 466 | DateBookEvent::DateBookEvent(const EffectiveEvent &ev, |
464 | QWidget* parent = 0, | 467 | QWidget* parent = 0, |
465 | int SHOW_LOCATION = 0, | 468 | int SHOW_LOCATION = 0, |