summaryrefslogtreecommitdiff
path: root/sc/source/filter/xml/XMLStylesExportHelper.hxx
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2013-10-24 09:16:38 +0200
committerMatúš Kukan <matus.kukan@gmail.com>2013-10-26 23:01:18 +0200
commit38d13e7066e288b727587756f45ab6a599ca6f91 (patch)
treeea86ab26cdfa8cbcfb55c213be72af66460719cb /sc/source/filter/xml/XMLStylesExportHelper.hxx
parentad737687a5de397245518826211210fd08a48a4f (diff)
remove now unused ScMyDefaultStyles.maRowDefaults
Also adapt to GetColDefault() being always true. Change-Id: I4701f02c540591b3d9f5095b22de82623c22c0db
Diffstat (limited to 'sc/source/filter/xml/XMLStylesExportHelper.hxx')
-rw-r--r--sc/source/filter/xml/XMLStylesExportHelper.hxx8
1 files changed, 1 insertions, 7 deletions
diff --git a/sc/source/filter/xml/XMLStylesExportHelper.hxx b/sc/source/filter/xml/XMLStylesExportHelper.hxx
index d48907b7fc13..cdb618e95710 100644
--- a/sc/source/filter/xml/XMLStylesExportHelper.hxx
+++ b/sc/source/filter/xml/XMLStylesExportHelper.hxx
@@ -115,23 +115,17 @@ class ScFormatRangeStyles;
class ScMyDefaultStyles
{
- ScMyDefaultStyleList maRowDefaults;
ScMyDefaultStyleList maColDefaults;
sal_Int32 GetStyleNameIndex(const ScFormatRangeStyles* pCellStyles,
const sal_Int32 nTable, const sal_Int32 nPos,
- const sal_Int32 i, const bool bRow, bool& bIsAutoStyle);
- void FillDefaultStyles(const sal_Int32 nTable,
- const sal_Int32 nLastRow, const sal_Int32 nLastCol,
- const ScFormatRangeStyles* pCellStyles, ScDocument* pDoc,
- const bool bRow);
+ const sal_Int32 i, bool& bIsAutoStyle);
public:
void FillDefaultStyles(const sal_Int32 nTable,
const sal_Int32 nLastRow, const sal_Int32 nLastCol,
const ScFormatRangeStyles* pCellStyles, ScDocument* pDoc);
- const ScMyDefaultStyleList* GetRowDefaults() const { return &maRowDefaults; }
const ScMyDefaultStyleList* GetColDefaults() const { return &maColDefaults; }
};