summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2013-05-15 15:22:52 +0200
committerhjk <hjk121@nokiamail.com>2013-05-15 15:33:19 +0200
commit74a2bfb9752e0f7c18a40073050696d04d6f5f35 (patch)
tree75af87f1cbda8a4270d04ba0e4e0fde9db9c2b7f /src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
parentb4da98a34ef6f4fdae97e2929542d6c863bfad64 (diff)
downloadqt-creator-74a2bfb9752e0f7c18a40073050696d04d6f5f35.tar.gz
Fix signedness warning in cdbsymbolpathlisteditor.cpp.
Change-Id: I1e48e454c980fcf35433bf7ed3f4365c3fdb3ddc Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp')
-rw-r--r--src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
index eda4ba18f5..5b9b5a5998 100644
--- a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
+++ b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
@@ -173,7 +173,7 @@ bool CdbSymbolPathListEditor::isSymbolServerPath(const QString &path, QString *c
if (cacheDir) {
static const unsigned prefixLength = qstrlen(symbolServerPrefixC);
static const unsigned postfixLength = qstrlen(symbolServerPostfixC);
- if (path.length() == prefixLength + postfixLength)
+ if (path.length() == int(prefixLength + postfixLength))
return true;
// Split apart symbol server post/prefixes
*cacheDir = path.mid(prefixLength, path.size() - prefixLength - qstrlen(symbolServerPostfixC) + 1);