summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-11-01 15:19:46 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-11-02 14:58:10 +0100
commite4dcc3117ded80834610639162257ca2466fd14d (patch)
tree2b9356a51666f8e55b27bb2cfea7a26b596605af /sc/source
parent5787bb3ffda46341475a0096da07d32e0b81f50f (diff)
remove empty methods
Change-Id: I0af7aa408d4089015257430d3001f0bfcd77c955
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/filter/xml/xmlcondformat.cxx17
-rw-r--r--sc/source/filter/xml/xmlcondformat.hxx12
2 files changed, 0 insertions, 29 deletions
diff --git a/sc/source/filter/xml/xmlcondformat.cxx b/sc/source/filter/xml/xmlcondformat.cxx
index 0be6a4442138..fa2d2f998fd9 100644
--- a/sc/source/filter/xml/xmlcondformat.cxx
+++ b/sc/source/filter/xml/xmlcondformat.cxx
@@ -65,10 +65,6 @@ SvXMLImportContext* ScXMLConditionalFormatsContext::CreateChildContext( sal_uInt
return pContext;
}
-void ScXMLConditionalFormatsContext::EndElement()
-{
-}
-
ScXMLConditionalFormatContext::ScXMLConditionalFormatContext( ScXMLImport& rImport, sal_uInt16 nPrfx,
const ::rtl::OUString& rLName, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList>& xAttrList):
SvXMLImportContext( rImport, nPrfx, rLName )
@@ -171,11 +167,6 @@ SvXMLImportContext* ScXMLColorScaleFormatContext::CreateChildContext( sal_uInt16
return pContext;
}
-void ScXMLColorScaleFormatContext::EndElement()
-{
-
-}
-
ScXMLDataBarFormatContext::ScXMLDataBarFormatContext( ScXMLImport& rImport, sal_uInt16 nPrfx,
const ::rtl::OUString& rLName, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList>& xAttrList,
ScConditionalFormat* pFormat):
@@ -301,10 +292,6 @@ SvXMLImportContext* ScXMLDataBarFormatContext::CreateChildContext( sal_uInt16 nP
return pContext;
}
-void ScXMLDataBarFormatContext::EndElement()
-{
-}
-
ScXMLIconSetFormatContext::ScXMLIconSetFormatContext(ScXMLImport& rImport, sal_uInt16 nPrfx,
const ::rtl::OUString& rLName,
const ::com::sun::star::uno::Reference<
@@ -577,10 +564,6 @@ ScXMLColorScaleFormatEntryContext::ScXMLColorScaleFormatEntryContext( ScXMLImpor
pFormat->AddEntry(mpFormatEntry);
}
-void ScXMLColorScaleFormatEntryContext::EndElement()
-{
-}
-
ScXMLFormattingEntryContext::ScXMLFormattingEntryContext( ScXMLImport& rImport, sal_uInt16 nPrfx,
const ::rtl::OUString& rLName, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList>& xAttrList,
ScColorScaleEntry*& pColorScaleEntry):
diff --git a/sc/source/filter/xml/xmlcondformat.hxx b/sc/source/filter/xml/xmlcondformat.hxx
index 0a685d1de220..45513ce83d88 100644
--- a/sc/source/filter/xml/xmlcondformat.hxx
+++ b/sc/source/filter/xml/xmlcondformat.hxx
@@ -51,8 +51,6 @@ public:
const ::rtl::OUString& rLocalName,
const ::com::sun::star::uno::Reference<
::com::sun::star::xml::sax::XAttributeList>& xAttrList );
-
- virtual void EndElement();
};
class ScXMLConditionalFormatContext : public SvXMLImportContext
@@ -73,7 +71,6 @@ public:
::com::sun::star::xml::sax::XAttributeList>& xAttrList );
virtual void EndElement();
-
private:
ScConditionalFormat* mpFormat;
@@ -97,9 +94,6 @@ public:
const ::rtl::OUString& rLocalName,
const ::com::sun::star::uno::Reference<
::com::sun::star::xml::sax::XAttributeList>& xAttrList );
-
- virtual void EndElement();
-
private:
ScColorScaleFormat* pColorScaleFormat;
@@ -123,9 +117,6 @@ public:
const ::rtl::OUString& rLocalName,
const ::com::sun::star::uno::Reference<
::com::sun::star::xml::sax::XAttributeList>& xAttrList );
-
- virtual void EndElement();
-
private:
ScDataBarFormat* mpDataBarFormat;
@@ -168,9 +159,6 @@ public:
ScColorScaleFormat* pFormat);
virtual ~ScXMLColorScaleFormatEntryContext() {}
-
- virtual void EndElement();
-
private:
ScColorScaleEntry* mpFormatEntry;