summaryrefslogtreecommitdiff
authorerik <erik>2007-02-09 21:16:14 (UTC)
committer erik <erik>2007-02-09 21:16:14 (UTC)
commit570130f80c0db0c9acab25423b8e8424beb78491 (patch) (side-by-side diff)
tree6a42bf998188819bdf036e214e7c7e221cf5fd64
parent2695f72652956e94e24611539579e7ff7899811e (diff)
downloadopie-570130f80c0db0c9acab25423b8e8424beb78491.zip
opie-570130f80c0db0c9acab25423b8e8424beb78491.tar.gz
opie-570130f80c0db0c9acab25423b8e8424beb78491.tar.bz2
This commit is based on the patch submitted to bug 1702:
http://opie-bugs.oszine.de/view.php?id=1702 The problem behavior said that the day abbreviations in the PIM suite were wrong for at least it and fr. The fix is to make sure that there is not a translation of the abbreviations because the abbreviations have already been translated. Thanks goes to an anonymous reporter for reporting and to antonus for submitting a patch. Thanks to Paul E. (aka BlueLightning) for bringing the bug to our attention.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook/modules/weeklst/datebookweeklstdayhdr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pim/datebook/modules/weeklst/datebookweeklstdayhdr.cpp b/core/pim/datebook/modules/weeklst/datebookweeklstdayhdr.cpp
index d173444..24a68ed 100644
--- a/core/pim/datebook/modules/weeklst/datebookweeklstdayhdr.cpp
+++ b/core/pim/datebook/modules/weeklst/datebookweeklstdayhdr.cpp
@@ -14,7 +14,7 @@ DateBookWeekLstDayHdr::DateBookWeekLstDayHdr(const QDate &d, bool /* onM */,
char day=wdays[d.dayOfWeek()-1];
//dont use dayOfWeek() to save space !
- label->setText( QString(QObject::tr(QString(QChar(day)))) + " " +QString::number(d.day()) );
+ label->setText( QString(QString(QChar(day))) + " " +QString::number(d.day()) );
add->setText("+");