summaryrefslogtreecommitdiff
path: root/sc/source/core/data/table5.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-07-26 20:46:40 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-07-26 20:46:40 -0400
commit261f56fa90796686709f5ae7de3fba96121c0709 (patch)
tree3d0e7973a3a781365bdda8ea48eb0edc3d9189da /sc/source/core/data/table5.cxx
parentf16362fb7bf2d7823e8663ff56bcea235adfa513 (diff)
Actually this method is totally redundant. Remove it.
There is already an existing method that does the same thing. Change-Id: I627fa73cca8da35d703000bd27d33168612b4126
Diffstat (limited to 'sc/source/core/data/table5.cxx')
-rw-r--r--sc/source/core/data/table5.cxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/sc/source/core/data/table5.cxx b/sc/source/core/data/table5.cxx
index 8356dc5dae9e..3e244c2c3b8c 100644
--- a/sc/source/core/data/table5.cxx
+++ b/sc/source/core/data/table5.cxx
@@ -959,14 +959,6 @@ bool ScTable::IsManualRowHeight(SCROW nRow) const
return (pRowFlags->GetValue(nRow) & CR_MANUALSIZE) != 0;
}
-void ScTable::SetRowHeightManual(SCROW nRow, bool bManual)
-{
- if (bManual)
- pRowFlags->OrValue(nRow, CR_MANUALSIZE);
- else
- pRowFlags->AndValue(nRow, sal::static_int_cast<sal_uInt8>(~CR_MANUALSIZE));
-}
-
namespace {
void lcl_syncFlags(ScFlatBoolColSegments& rColSegments, ScFlatBoolRowSegments& rRowSegments,