aboutsummaryrefslogtreecommitdiffstats
path: root/src/particles/qquicklineextruder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/particles/qquicklineextruder.cpp')
-rw-r--r--src/particles/qquicklineextruder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/particles/qquicklineextruder.cpp b/src/particles/qquicklineextruder.cpp
index 6ebd728407..670e656b8e 100644
--- a/src/particles/qquicklineextruder.cpp
+++ b/src/particles/qquicklineextruder.cpp
@@ -69,10 +69,10 @@ QPointF QQuickLineExtruder::extrude(const QRectF &r)
{
qreal x,y;
if (!r.height()){
- x = r.width() * QRandomGenerator::getReal();
+ x = r.width() * QRandomGenerator::global()->generateDouble();
y = 0;
}else{
- y = r.height() * QRandomGenerator::getReal();
+ y = r.height() * QRandomGenerator::global()->generateDouble();
if (!r.width()){
x = 0;
}else{