cid#1448384 Calling risky rand

Change-Id: I4787c004ca73cb3496a33c06c03ea4cd988b72ad
Reviewed-on: https://gerrit.libreoffice.org/75712
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
This commit is contained in:
Caolán McNamara
2019-07-16 11:40:43 +01:00
parent 8536d63dc3
commit 0b4816c33f

View File

@@ -37,6 +37,7 @@
#include <com/sun/star/rendering/XSpriteCanvas.hpp>
#include <com/sun/star/ucb/UniversalContentBroker.hpp>
#include <comphelper/processfactory.hxx>
#include <comphelper/random.hxx>
#include <cppuhelper/bootstrap.hxx>
#include <vcl/canvastools.hxx>
#include <vcl/svapp.hxx>
@@ -424,9 +425,9 @@ class DemoRenderer
maRenderState = maOldRenderState; // pop
}
double gimmerand()
double gimmerand()
{
return static_cast<double>(rand()) / RAND_MAX * 100 + 50;
return comphelper::rng::uniform_real_distribution(0, 100);
}
void drawArcs()