author | harlekin <harlekin> | 2002-04-04 15:02:30 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-04-04 15:02:30 (UTC) |
commit | b765d3996578024679cd4c0f083070d2784df330 (patch) (side-by-side diff) | |
tree | f138ce099ecd5a59c4948132fc1c3d891aa7dca8 | |
parent | 8d2a3e988c683d9b999f9fa5a3485d6b54465d1c (diff) | |
download | opie-b765d3996578024679cd4c0f083070d2784df330.zip opie-b765d3996578024679cd4c0f083070d2784df330.tar.gz opie-b765d3996578024679cd4c0f083070d2784df330.tar.bz2 |
small fixes
-rw-r--r-- | core/pim/today/today.cpp | 4 | ||||
-rw-r--r-- | core/pim/today/todaybase.cpp | 1 | ||||
-rw-r--r-- | core/pim/today/todayconfig.cpp | 1 |
3 files changed, 2 insertions, 4 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp index 66a4152..51aba69 100644 --- a/core/pim/today/today.cpp +++ b/core/pim/today/today.cpp @@ -316,10 +316,10 @@ void Today::getDates() { if (ONLY_LATER && count==0) { QLabel* noMoreEvents = new QLabel(AllDateBookEvents); - noMoreEvents->setText("No more appointments today"); + noMoreEvents->setText(tr("No more appointments today")); layoutDates->addWidget(noMoreEvents); } } else { QLabel* noEvents = new QLabel(AllDateBookEvents); - noEvents->setText("No appointments today"); + noEvents->setText(tr("No appointments today")); layoutDates->addWidget(noEvents); } diff --git a/core/pim/today/todaybase.cpp b/core/pim/today/todaybase.cpp index c0b8d34..dfcc34e 100644 --- a/core/pim/today/todaybase.cpp +++ b/core/pim/today/todaybase.cpp @@ -24,5 +24,4 @@ #include <qlayout.h> #include <qvariant.h> -#include <qtooltip.h> #include <qwhatsthis.h> #include <qimage.h> diff --git a/core/pim/today/todayconfig.cpp b/core/pim/today/todayconfig.cpp index 7c690a7..a908d98 100644 --- a/core/pim/today/todayconfig.cpp +++ b/core/pim/today/todayconfig.cpp @@ -17,5 +17,4 @@ #include <qlayout.h> #include <qvariant.h> -#include <qtooltip.h> #include <qwhatsthis.h> |