summaryrefslogtreecommitdiffstats
path: root/examples/embedded/flickable
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2021-03-14 08:56:46 -0700
committerThiago Macieira <thiago.macieira@intel.com>2021-03-17 06:21:52 +0000
commitae9e43375324dfefaf8ffce32684e499923e9c6b (patch)
tree9a30672e9f2fc2094ce77d7574b54d01449ab838 /examples/embedded/flickable
parentd6367aca869ee30e15a3861b2990baafb9972aa1 (diff)
Remove unnecessary int() casting in QRandomGenerator::bounded
Commit 21d39168170c6833512c4a5f53985272741bd7e7 added the 64-bit version, so qsizetype now works cross-platform. The casts were added to make qtbase compile on commit df853fed66d891077ae2d04ecfa171d7e2cd5202. Change-Id: I26b8286f61534f88b649fffd166c409c5c232230 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io>
Diffstat (limited to 'examples/embedded/flickable')
-rw-r--r--examples/embedded/flickable/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/embedded/flickable/main.cpp b/examples/embedded/flickable/main.cpp
index fd30d15e49..139baa6ba7 100644
--- a/examples/embedded/flickable/main.cpp
+++ b/examples/embedded/flickable/main.cpp
@@ -72,7 +72,7 @@ static QStringList colorPairs(int max)
// randomize it
colors.clear();
while (combinedColors.count()) {
- int i = QRandomGenerator::global()->bounded(int(combinedColors.count()));
+ int i = QRandomGenerator::global()->bounded(combinedColors.count());
colors << combinedColors[i];
combinedColors.removeAt(i);
if (colors.count() == max)