From dc2a3ee44b2d33ea1b69d4f6ec8694737ff30c14 Mon Sep 17 00:00:00 2001 From: Allen Winter Date: Fri, 22 Feb 2008 23:31:07 +0000 Subject: [PATCH] backport SVN commit 778234 by thiago: \xE2 is not allowed. Use octal. svn path=/branches/KDE/3.5/kdepim/; revision=778236 --- kmailicalifaceimpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmailicalifaceimpl.cpp b/kmailicalifaceimpl.cpp index 68963ed4d..6b3a7fb99 100644 --- a/kmailicalifaceimpl.cpp +++ b/kmailicalifaceimpl.cpp @@ -1302,7 +1302,7 @@ QString KMailICalIfaceImpl::folderName( KFolderTreeItem::Type type, int language // French folderNames[2][KFolderTreeItem::Calendar] = QString::fromLatin1("Calendrier"); // Tasks = Tâches (â == 0xE2 in latin1) - folderNames[2][KFolderTreeItem::Tasks] = QString::fromLatin1("T\xE2ches"); + folderNames[2][KFolderTreeItem::Tasks] = String::fromLatin1("T\342ches"); folderNames[2][KFolderTreeItem::Journals] = QString::fromLatin1("Journal"); folderNames[2][KFolderTreeItem::Contacts] = QString::fromLatin1("Contacts"); folderNames[2][KFolderTreeItem::Notes] = QString::fromLatin1("Notes");