Commit 27f1e1e9 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 730888 - [PATCH] Fix missing '&' in Boolean operation in qstring.cpp

parent 16ba4bd5
......@@ -11515,7 +11515,7 @@ static inline bool format(QChar::Decomposition tag, QString & str,
switch (tag) {
case QChar::Medial:
return (left & right);
return (left && right);
case QChar::Initial:
return (left && !right);
case QChar::Final:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment