diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-04-12 12:07:43 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-04-12 12:35:48 +0200 |
commit | 7a18848e143933ccdb75bdfc8713da4f7f02efe4 (patch) | |
tree | 1bcbc0f489836a35ce8315e686b3e91fd2e1a4f6 /sc | |
parent | 03a651507e34ee423674d2a537f2bb4b509af6d6 (diff) |
unusedcode.easy: remove various methods
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/xlpivot.cxx | 5 | ||||
-rw-r--r-- | sc/source/filter/inc/xlpivot.hxx | 2 |
2 files changed, 0 insertions, 7 deletions
diff --git a/sc/source/filter/excel/xlpivot.cxx b/sc/source/filter/excel/xlpivot.cxx index 854c5805f594..ddfdff07414c 100644 --- a/sc/source/filter/excel/xlpivot.cxx +++ b/sc/source/filter/excel/xlpivot.cxx @@ -323,11 +323,6 @@ bool XclPCField::IsGroupChildField() const return (meFieldType == EXC_PCFIELD_STDGROUP) || (meFieldType == EXC_PCFIELD_DATECHILD); } -sal_uInt16 XclPCField::GetBaseFieldIndex() const -{ - return IsGroupChildField() ? maFieldInfo.mnGroupBase : mnFieldIdx; -} - bool XclPCField::HasOrigItems() const { return IsSupportedField() && ((maFieldInfo.mnOrigItems > 0) || HasPostponedItems()); diff --git a/sc/source/filter/inc/xlpivot.hxx b/sc/source/filter/inc/xlpivot.hxx index 74aef3605066..d640aa4e9102 100644 --- a/sc/source/filter/inc/xlpivot.hxx +++ b/sc/source/filter/inc/xlpivot.hxx @@ -509,8 +509,6 @@ public: bool IsGroupBaseField() const; /** Returns true, if this field is a child field in a grouping (it has a base field). */ bool IsGroupChildField() const; - /** Returns the index of the base field, if exists, otherwise the own index. */ - sal_uInt16 GetBaseFieldIndex() const; /** Returns true, if the field is based on a column in the source data area. */ bool HasOrigItems() const; |