author | harlekin <harlekin> | 2002-02-17 19:21:45 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-02-17 19:21:45 (UTC) |
commit | 39c6f8a9e734f200de4b67f55e159a6ccce38940 (patch) (side-by-side diff) | |
tree | 3574ddf0d7b99deca02d4ca8c1a71e8ef72cf99f | |
parent | 687d0c760684392c89f4e99fbf803c8f4d67b2b1 (diff) | |
download | opie-39c6f8a9e734f200de4b67f55e159a6ccce38940.zip opie-39c6f8a9e734f200de4b67f55e159a6ccce38940.tar.gz opie-39c6f8a9e734f200de4b67f55e159a6ccce38940.tar.bz2 |
fixed stupid bug
-rw-r--r-- | core/pim/today/today.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp index 0f6e598..7a2d0c9 100644 --- a/core/pim/today/today.cpp +++ b/core/pim/today/today.cpp @@ -200,3 +200,3 @@ void Today::getDates() } - else if ((time.toString() <= TimeString::dateString((*it).event().end())) && ONLY_LATER ) + else if ((time.toString() <= TimeString::dateString((*it).event().end())) ) { @@ -221,8 +221,7 @@ void Today::getDates() } - - if (msg.isEmpty()) - { - msg = "No more appointments today"; - } } + if (msg.isEmpty()) + { + msg = "No more appointments today"; + } DatesField->setText(msg); |