[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - sc/source

Tomaž Vajngerl tomaz.vajngerl at collabora.co.uk
Tue Mar 7 16:03:07 UTC 2017


 sc/source/ui/StatisticsDialogs/RandomNumberGeneratorDialog.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c713f227cc34b841c06beca2e9eaa96653eac372
Author: Tomaž Vajngerl <tomaz.vajngerl at collabora.co.uk>
Date:   Thu Mar 2 09:30:21 2017 +0100

    tdf#104117 set template parameter sal_Int64 for random
    
    Change-Id: Ie8cef4375608df160b383ff74c32838f00e60aba
    Reviewed-on: https://gerrit.libreoffice.org/34777
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Kohei Yoshida <libreoffice at kohei.us>
    (cherry picked from commit 23672df737258391bd9533e61733c6cc70b9a5eb)
    Reviewed-on: https://gerrit.libreoffice.org/34817
    Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>

diff --git a/sc/source/ui/StatisticsDialogs/RandomNumberGeneratorDialog.cxx b/sc/source/ui/StatisticsDialogs/RandomNumberGeneratorDialog.cxx
index c59e9cc..56cd2e6 100644
--- a/sc/source/ui/StatisticsDialogs/RandomNumberGeneratorDialog.cxx
+++ b/sc/source/ui/StatisticsDialogs/RandomNumberGeneratorDialog.cxx
@@ -223,7 +223,7 @@ void ScRandomNumberGeneratorDialog::SelectGeneratorAndGenerateNumbers()
         }
         case DIST_UNIFORM_INTEGER:
         {
-            std::uniform_int_distribution<> distribution(parameterInteger1, parameterInteger2);
+            std::uniform_int_distribution<sal_Int64> distribution(parameterInteger1, parameterInteger2);
             auto rng = std::bind(distribution, seed);
             GenerateNumbers(rng, STR_DISTRIBUTION_UNIFORM_INTEGER, aDecimalPlaces);
             break;


More information about the Libreoffice-commits mailing list