patch for bug #1702
Antoine Martin <[email protected]>
| Newsgroups | gmane.comp.handhelds.opie.devel |
|---|---|
| Message-ID | <20060825203743.GA5541@antonus> |
The error was due to a translation of a translation. _______________________________________________ http://opie.handhelds.org/cgi-bin/moin.cgi/DeveloperWikiIndex Opie-devel mailing list [email protected] https://handhelds.org/mailman/listinfo/opie-devel
bug-1702.patch
(text/plain, 790 B)
Index: core/pim/datebook/modules/weeklst/datebookweeklstdayhdr.cpp
===================================================================
RCS file: /cvs/opie/core/pim/datebook/modules/weeklst/datebookweeklstdayhdr.cpp,v
retrieving revision 1.1
diff -u -d -b -B -r1.1 datebookweeklstdayhdr.cpp
--- core/pim/datebook/modules/weeklst/datebookweeklstdayhdr.cpp 19 Mar 2005 13:44:30 -0000 1.1
+++ core/pim/datebook/modules/weeklst/datebookweeklstdayhdr.cpp 25 Aug 2006 20:17:15 -0000
@@ -14,7 +14,7 @@
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("+");