summaryrefslogtreecommitdiff
path: root/quacker/quacker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'quacker/quacker.cpp')
-rw-r--r--quacker/quacker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/quacker/quacker.cpp b/quacker/quacker.cpp
index 9e133c4..ba3ad6a 100644
--- a/quacker/quacker.cpp
+++ b/quacker/quacker.cpp
@@ -2176,11 +2176,11 @@ void TopLevel::about()
QString line = strm.readLine();
while (!line.isNull())
{
- int startPos = line.indexOf(':');
+ qsizetype startPos = line.indexOf(':');
if (startPos != -1 && startPos + 1 < line.size())
{
line = line.mid(startPos + 1);
- int endPos = line.indexOf(':');
+ qsizetype endPos = line.indexOf(':');
line = line.mid(0, endPos);
// Only include lines with a copyright (the word or the symbol) in them
if (line.indexOf("copyright", 0, Qt::CaseInsensitive) != -1 || line.indexOf(QChar(0xA9)) != -1)