summaryrefslogtreecommitdiffstats
path: root/qtools
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-09-09 20:39:09 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-09-09 20:39:09 (GMT)
commit4afe088327ae6780c9c8a73b7b2d3994005f6cca (patch)
treedc6903459c6f0bb73c0fb39c66e1178beb1e2a2a /qtools
parent33daf7a7d9ab9b6c5454acd7a3cff7923d1c4c14 (diff)
downloadDoxygen-4afe088327ae6780c9c8a73b7b2d3994005f6cca.zip
Doxygen-4afe088327ae6780c9c8a73b7b2d3994005f6cca.tar.gz
Doxygen-4afe088327ae6780c9c8a73b7b2d3994005f6cca.tar.bz2
Bug 736036 - [PATCH] Remove redundant local variable initialization in qtools/qstring.cpp
Diffstat (limited to 'qtools')
-rw-r--r--qtools/qstring.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qtools/qstring.cpp b/qtools/qstring.cpp
index fa8f1d3..3673c20 100644
--- a/qtools/qstring.cpp
+++ b/qtools/qstring.cpp
@@ -11499,9 +11499,9 @@ static inline bool format(QChar::Decomposition tag, QString & str,
unsigned int l = index + len;
unsigned int r = index;
- bool left = FALSE, right = FALSE;
+ bool right = FALSE;
- left = ((l < str.length()) &&
+ bool left = ((l < str.length()) &&
((str[(int)l].joining() == QChar::Dual) ||
(str[(int)l].joining() == QChar::Right)));
if (r > 0) {