summaryrefslogtreecommitdiff
path: root/xmloff/source/script/xmlbasici.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/script/xmlbasici.cxx')
-rw-r--r--xmloff/source/script/xmlbasici.cxx28
1 files changed, 0 insertions, 28 deletions
diff --git a/xmloff/source/script/xmlbasici.cxx b/xmloff/source/script/xmlbasici.cxx
index 107e47feb878..2a8eacaaa479 100644
--- a/xmloff/source/script/xmlbasici.cxx
+++ b/xmloff/source/script/xmlbasici.cxx
@@ -27,10 +27,7 @@
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
-
-// =============================================================================
// XMLBasicImportContext
-// =============================================================================
XMLBasicImportContext::XMLBasicImportContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName,
const Reference< frame::XModel >& rxModel )
@@ -44,14 +41,10 @@ XMLBasicImportContext::XMLBasicImportContext( SvXMLImport& rImport, sal_uInt16 n
m_xHandler->setTargetDocument( xComp );
}
-// -----------------------------------------------------------------------------
-
XMLBasicImportContext::~XMLBasicImportContext()
{
}
-// -----------------------------------------------------------------------------
-
SvXMLImportContext* XMLBasicImportContext::CreateChildContext(
sal_uInt16 nPrefix, const OUString& rLocalName,
const Reference< xml::sax::XAttributeList >& )
@@ -68,8 +61,6 @@ SvXMLImportContext* XMLBasicImportContext::CreateChildContext(
return pContext;
}
-// -----------------------------------------------------------------------------
-
void XMLBasicImportContext::StartElement(
const Reference< xml::sax::XAttributeList >& rxAttrList )
{
@@ -96,8 +87,6 @@ void XMLBasicImportContext::StartElement(
}
}
-// -----------------------------------------------------------------------------
-
void XMLBasicImportContext::EndElement()
{
if ( m_xHandler.is() )
@@ -108,18 +97,13 @@ void XMLBasicImportContext::EndElement()
}
}
-// -----------------------------------------------------------------------------
-
void XMLBasicImportContext::Characters( const OUString& rChars )
{
if ( m_xHandler.is() )
m_xHandler->characters( rChars );
}
-
-// =============================================================================
// XMLBasicImportChildContext
-// =============================================================================
XMLBasicImportChildContext::XMLBasicImportChildContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName,
const Reference< xml::sax::XDocumentHandler >& rxHandler )
@@ -128,14 +112,10 @@ XMLBasicImportChildContext::XMLBasicImportChildContext( SvXMLImport& rImport, sa
{
}
-// -----------------------------------------------------------------------------
-
XMLBasicImportChildContext::~XMLBasicImportChildContext()
{
}
-// -----------------------------------------------------------------------------
-
SvXMLImportContext* XMLBasicImportChildContext::CreateChildContext(
sal_uInt16 nPrefix, const OUString& rLocalName,
const Reference< xml::sax::XAttributeList >& )
@@ -143,8 +123,6 @@ SvXMLImportContext* XMLBasicImportChildContext::CreateChildContext(
return new XMLBasicImportChildContext( GetImport(), nPrefix, rLocalName, m_xHandler );
}
-// -----------------------------------------------------------------------------
-
void XMLBasicImportChildContext::StartElement(
const Reference< xml::sax::XAttributeList >& xAttrList )
{
@@ -156,8 +134,6 @@ void XMLBasicImportChildContext::StartElement(
}
}
-// -----------------------------------------------------------------------------
-
void XMLBasicImportChildContext::EndElement()
{
if ( m_xHandler.is() )
@@ -167,14 +143,10 @@ void XMLBasicImportChildContext::EndElement()
}
}
-// -----------------------------------------------------------------------------
-
void XMLBasicImportChildContext::Characters( const OUString& rChars )
{
if ( m_xHandler.is() )
m_xHandler->characters( rChars );
}
-// -----------------------------------------------------------------------------
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */