diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/StatisticsDialogs/SamplingDialog.cxx | 4 | ||||
-rw-r--r-- | sc/source/ui/inc/SamplingDialog.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/StatisticsDialogs/SamplingDialog.cxx b/sc/source/ui/StatisticsDialogs/SamplingDialog.cxx index 3a097a08c479..1717baa1282e 100644 --- a/sc/source/ui/StatisticsDialogs/SamplingDialog.cxx +++ b/sc/source/ui/StatisticsDialogs/SamplingDialog.cxx @@ -219,7 +219,7 @@ ScRange ScSamplingDialog::PerformPeriodicSampling(ScDocShell* pDocShell) return ScRange(mOutputAddress, ScAddress(outTab, outRow, outTab) ); } -ScRange ScSamplingDialog::PerformRandomSampling(ScDocShell* pDocShell) +ScRange ScSamplingDialog::PerformRandomSamplingKeepOrder(ScDocShell* pDocShell) { ScAddress aStart = mInputRange.aStart; ScAddress aEnd = mInputRange.aEnd; @@ -277,7 +277,7 @@ void ScSamplingDialog::PerformSampling() if (mpRandomMethodRadio->IsChecked()) { - aModifiedRange = PerformRandomSampling(pDocShell); + aModifiedRange = PerformRandomSamplingKeepOrder(pDocShell); } else if (mpPeriodicMethodRadio->IsChecked()) { diff --git a/sc/source/ui/inc/SamplingDialog.hxx b/sc/source/ui/inc/SamplingDialog.hxx index 9b66be6e82c3..eb5f7310b857 100644 --- a/sc/source/ui/inc/SamplingDialog.hxx +++ b/sc/source/ui/inc/SamplingDialog.hxx @@ -67,7 +67,7 @@ private: void GetRangeFromSelection(); void PerformSampling(); - ScRange PerformRandomSampling(ScDocShell* pDocShell); + ScRange PerformRandomSamplingKeepOrder(ScDocShell* pDocShell); ScRange PerformPeriodicSampling(ScDocShell* pDocShell); DECL_LINK( OkClicked, Button*, void ); |