diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-05-30 14:47:49 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-05-30 15:00:26 -0400 |
commit | 0ab538885d818a7b3706df48a625e2523a8ebbdf (patch) | |
tree | c90b0c86e1667fb4b52a33d267e757978446f116 /sc/source/ui/StatisticsDialogs/MovingAverageDialog.cxx | |
parent | f85d10fdf651d131ecb0c3622326b3b076205e80 (diff) |
fdo#79174: Use 3D address when the input and output are on different sheets.
Also some cleanup, mostly to avoid storing separate address convention object,
which is not really necessary.
Change-Id: Id3e104043f08b6786de2e91d69361557b83890f9
Diffstat (limited to 'sc/source/ui/StatisticsDialogs/MovingAverageDialog.cxx')
-rw-r--r-- | sc/source/ui/StatisticsDialogs/MovingAverageDialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/StatisticsDialogs/MovingAverageDialog.cxx b/sc/source/ui/StatisticsDialogs/MovingAverageDialog.cxx index aafe29060525..2786e53b6626 100644 --- a/sc/source/ui/StatisticsDialogs/MovingAverageDialog.cxx +++ b/sc/source/ui/StatisticsDialogs/MovingAverageDialog.cxx @@ -53,7 +53,7 @@ ScRange ScMovingAverageDialog::ApplyOutput(ScDocShell* pDocShell) { AddressWalkerWriter output(mOutputAddress, pDocShell, mDocument, formula::FormulaGrammar::mergeToGrammar( formula::FormulaGrammar::GRAM_ENGLISH, mAddressDetails.eConv)); - FormulaTemplate aTemplate(mDocument, mAddressDetails); + FormulaTemplate aTemplate(mDocument); boost::scoped_ptr<DataRangeIterator> pIterator; if (mGroupedBy == BY_COLUMN) |