Skip to content

Commit

Permalink
Bug 730888 - [PATCH] Fix missing '&' in Boolean operation in qstring.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed May 29, 2014
1 parent 16ba4bd commit 27f1e1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qtools/qstring.cpp
Expand Up @@ -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:
Expand Down

0 comments on commit 27f1e1e

Please sign in to comment.