summaryrefslogtreecommitdiffstats
path: root/src/qdoc/openedlist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qdoc/openedlist.cpp')
-rw-r--r--src/qdoc/openedlist.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qdoc/openedlist.cpp b/src/qdoc/openedlist.cpp
index ce9efb06e..a36e3b545 100644
--- a/src/qdoc/openedlist.cpp
+++ b/src/qdoc/openedlist.cpp
@@ -135,7 +135,7 @@ int OpenedList::fromAlpha(const QString &str)
int n = 0;
int u;
- for (int i = 0; i < (int) str.length(); i++) {
+ for (int i = 0; i < str.length(); i++) {
u = str[i].toLower().unicode();
if (u >= 'a' && u <= 'z') {
n *= 26;