From 354e3f5d24ab2f8d79c432739ab1630e609657b7 Mon Sep 17 00:00:00 2001 From: Thomas McGuire Date: Sun, 20 Jul 2008 13:29:58 +0000 Subject: [PATCH] Merged revisions 834292 via svnmerge from svn+ssh://tmcguire@svn.kde.org/home/kde/trunk/KDE/kdepim ........ r834292 | tmcguire | 2008-07-18 17:25:52 +0200 (Fri, 18 Jul 2008) | 3 lines Add comment about this. SVN_SILENT ........ svn path=/branches/kdepim/enterprise4/kdepim/; revision=835346 --- templateparser.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/templateparser.cpp b/templateparser.cpp index 621ff6878..f1fcbcaa5 100644 --- a/templateparser.cpp +++ b/templateparser.cpp @@ -67,9 +67,13 @@ int TemplateParser::parseQuotes( const QString &prefix, const QString &str, int pos = prefix.length(); int len; int str_len = str.length(); + + // Also allow the german lower double-quote sign as quote separator, not only + // the standard ASCII quote ("). This fixes bug 166728. QList< QChar > quoteChars; quoteChars.append( '"' ); quoteChars.append( 0x201C ); + QChar prev = QChar::null; pos++;