diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-12-03 16:39:28 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-12-03 16:39:28 -0500 |
commit | 150270b097a0da7963460d568d8e599db623af2d (patch) | |
tree | a6a6df6fc220d5880ff1817bc7f07ba421246df5 /sc | |
parent | 2792670a53deca5ccd5b0f23faa7f1816684945d (diff) |
Oops I didn't mean to change this.
SetRowHidden() is more light-weight than ShowRows(). Let's stick with
SetRowHidden() here.
Change-Id: Ieb83078b5546107a3ee2ea3b8b73df9627525abe
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/colrowst.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/colrowst.cxx b/sc/source/filter/excel/colrowst.cxx index 5483324cd1ef..9d8ac1094db0 100644 --- a/sc/source/filter/excel/colrowst.cxx +++ b/sc/source/filter/excel/colrowst.cxx @@ -346,7 +346,7 @@ void XclImpColRowSettings::ConvertHiddenFlags( SCTAB nScTab ) { if (bPrevHidden) { - rDoc.ShowRows(nPrevRow, nRow-1, nScTab, false); + rDoc.SetRowHidden(nPrevRow, nRow-1, nScTab, true); // #i38093# rows hidden by filter need extra flag if (nFirstFilterScRow <= nPrevRow && nPrevRow <= nLastFilterScRow) { |