From 572c5ed1bd16192ddc5e0c994360a708e1412143 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Tue, 6 Dec 2005 13:44:49 +0000 Subject: [PATCH] Changing the encoding of these files to UTF-8. There are some bad constructs on a couple of files (like static arrays of QStrings initialised directly with const char[] constants, without any proper decoding) that will most likely break under certain locales. The encoding is correct. It's the code that must be changed now. I don't consider this a problem because it was already broken for any locale different than the one the programmer wrote the code in. svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=486005 --- extdate/extdatetbl.cpp | 4 ++-- kdeeducore/leitnerbox.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/extdate/extdatetbl.cpp b/extdate/extdatetbl.cpp index 1c84c49..852d231 100644 --- a/extdate/extdatetbl.cpp +++ b/extdate/extdatetbl.cpp @@ -244,8 +244,8 @@ ExtDateTable::paintCell(QPainter *painter, int row, int col) text = d->calendar->dayString(pCellDate, true); if( d->calendar->month(pCellDate) != d->calendar->month(date) ) { // we are either - // ° painting a day of the previous month or - // ° painting a day of the following month + // ° painting a day of the previous month or + // ° painting a day of the following month // TODO: don't hardcode gray here! Use a color with less contrast to the background than normal text. painter->setPen( colorGroup().mid() ); // painter->setPen(gray); diff --git a/kdeeducore/leitnerbox.h b/kdeeducore/leitnerbox.h index d991871..f0629bc 100644 --- a/kdeeducore/leitnerbox.h +++ b/kdeeducore/leitnerbox.h @@ -72,7 +72,7 @@ public: /** * Sets the LeitnerBox's vocabCount to count - * @p¾aramcount the new vocabCount to be set + * @param count the new vocabCount to be set */ void setVocabCount( int count ); -- 2.47.3