-rw-r--r-- | core/pim/today/today.cpp | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp index 87a7970..0ab7a2a 100644 --- a/core/pim/today/today.cpp +++ b/core/pim/today/today.cpp | |||
@@ -42,6 +42,7 @@ | |||
42 | #include <qlayout.h> | 42 | #include <qlayout.h> |
43 | #include <qtl.h> | 43 | #include <qtl.h> |
44 | 44 | ||
45 | |||
45 | //#include <iostream.h> | 46 | //#include <iostream.h> |
46 | #include <unistd.h> | 47 | #include <unistd.h> |
47 | #include <stdlib.h> | 48 | #include <stdlib.h> |
@@ -127,20 +128,21 @@ void Today::setOwnerField(QString &message) { | |||
127 | * If registered against that today ist started on each resume. | 128 | * If registered against that today ist started on each resume. |
128 | */ | 129 | */ |
129 | void Today::autoStart() { | 130 | void Today::autoStart() { |
130 | // Config cfg("today"); | 131 | Config cfg("today"); |
131 | //cfg.setGroup("Autostart"); | 132 | cfg.setGroup("Autostart"); |
132 | //AUTOSTART = cfg.readNumEntry("autostart",1); | 133 | int AUTOSTART = cfg.readNumEntry("autostart",1); |
133 | 134 | qDebug(QString("%1").arg(AUTOSTART)); | |
134 | if (AUTOSTART) { | 135 | if (AUTOSTART) { |
135 | QCopEnvelope e("QPE/System", "autoStart(QString, QString, QString)"); | 136 | QCopEnvelope e("QPE/System", "autoStart(QString, QString, QString)"); |
136 | e << QString("add"); | 137 | e << QString("add"); |
137 | e << QString("today"); | 138 | e << QString("today"); |
138 | e << AUTOSTART_TIMER; | 139 | e << AUTOSTART_TIMER; |
139 | } else { | 140 | } else { |
140 | QCopEnvelope e("QPE/System", "autoStart(QString, QString)"); | 141 | qDebug("Nun in else bei autostart"); |
141 | e << QString("remove"); | 142 | QCopEnvelope e("QPE/System", "autoStart(QString, QString)"); |
142 | e << QString("today"); | 143 | e << QString("remove"); |
143 | } | 144 | e << QString("today"); |
145 | } | ||
144 | } | 146 | } |
145 | 147 | ||
146 | /* | 148 | /* |
@@ -261,6 +263,7 @@ void Today::startConfig() { | |||
261 | int autostart = conf->CheckBoxAuto->isChecked(); | 263 | int autostart = conf->CheckBoxAuto->isChecked(); |
262 | int autostartdelay = conf->SpinBoxTime->value(); | 264 | int autostartdelay = conf->SpinBoxTime->value(); |
263 | 265 | ||
266 | |||
264 | cfg.writeEntry("maxlinestask",maxlinestask); | 267 | cfg.writeEntry("maxlinestask",maxlinestask); |
265 | cfg.writeEntry("maxcharclip", maxcharclip); | 268 | cfg.writeEntry("maxcharclip", maxcharclip); |
266 | cfg.writeEntry("maxlinesmeet",maxmeet); | 269 | cfg.writeEntry("maxlinesmeet",maxmeet); |
@@ -275,6 +278,7 @@ void Today::startConfig() { | |||
275 | cfg.write(); | 278 | cfg.write(); |
276 | NEW_START=1; | 279 | NEW_START=1; |
277 | draw(); | 280 | draw(); |
281 | AUTOSTART=autostart; | ||
278 | autoStart(); | 282 | autoStart(); |
279 | } | 283 | } |
280 | 284 | ||
@@ -453,7 +457,7 @@ void Today::startMail() { | |||
453 | e << QString("opiemail"); | 457 | e << QString("opiemail"); |
454 | //Right now start both, maybe decide which to rum via config file .. | 458 | //Right now start both, maybe decide which to rum via config file .. |
455 | QCopEnvelope f("QPE/System", "execute(QString)"); | 459 | QCopEnvelope f("QPE/System", "execute(QString)"); |
456 | e << QString("qtmail"); | 460 | f << QString("qtmail"); |
457 | } | 461 | } |
458 | 462 | ||
459 | 463 | ||