summaryrefslogtreecommitdiff
path: root/framework/source/xml/acceleratorconfigurationreader.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/xml/acceleratorconfigurationreader.cxx')
-rw-r--r--framework/source/xml/acceleratorconfigurationreader.cxx15
1 files changed, 0 insertions, 15 deletions
diff --git a/framework/source/xml/acceleratorconfigurationreader.cxx b/framework/source/xml/acceleratorconfigurationreader.cxx
index a123265d824f..3759c82d44ac 100644
--- a/framework/source/xml/acceleratorconfigurationreader.cxx
+++ b/framework/source/xml/acceleratorconfigurationreader.cxx
@@ -30,10 +30,8 @@
#include <vcl/svapp.hxx>
#include <rtl/ustrbuf.hxx>
-
namespace framework{
-
/* Throws a SaxException in case a wrong formated XML
structure was detected.
@@ -56,7 +54,6 @@ namespace framework{
css::uno::Any()); \
}
-
AcceleratorConfigurationReader::AcceleratorConfigurationReader(AcceleratorCache& rContainer)
: m_rContainer (rContainer )
, m_bInsideAcceleratorList(sal_False )
@@ -64,19 +61,16 @@ AcceleratorConfigurationReader::AcceleratorConfigurationReader(AcceleratorCache&
{
}
-
AcceleratorConfigurationReader::~AcceleratorConfigurationReader()
{
}
-
void SAL_CALL AcceleratorConfigurationReader::startDocument()
throw(css::xml::sax::SAXException,
css::uno::RuntimeException, std::exception )
{
}
-
void SAL_CALL AcceleratorConfigurationReader::endDocument()
throw(css::xml::sax::SAXException,
css::uno::RuntimeException, std::exception )
@@ -93,7 +87,6 @@ void SAL_CALL AcceleratorConfigurationReader::endDocument()
}
}
-
void SAL_CALL AcceleratorConfigurationReader::startElement(const OUString& sElement ,
const css::uno::Reference< css::xml::sax::XAttributeList >& xAttributeList)
throw(css::xml::sax::SAXException,
@@ -185,7 +178,6 @@ void SAL_CALL AcceleratorConfigurationReader::startElement(const OUString&
}
}
-
void SAL_CALL AcceleratorConfigurationReader::endElement(const OUString& sElement)
throw(css::xml::sax::SAXException,
css::uno::RuntimeException, std::exception )
@@ -209,21 +201,18 @@ void SAL_CALL AcceleratorConfigurationReader::endElement(const OUString& sElemen
}
}
-
void SAL_CALL AcceleratorConfigurationReader::characters(const OUString&)
throw(css::xml::sax::SAXException,
css::uno::RuntimeException, std::exception )
{
}
-
void SAL_CALL AcceleratorConfigurationReader::ignorableWhitespace(const OUString&)
throw(css::xml::sax::SAXException,
css::uno::RuntimeException, std::exception )
{
}
-
void SAL_CALL AcceleratorConfigurationReader::processingInstruction(const OUString& /*sTarget*/,
const OUString& /*sData*/ )
throw(css::xml::sax::SAXException,
@@ -231,7 +220,6 @@ void SAL_CALL AcceleratorConfigurationReader::processingInstruction(const OUStri
{
}
-
void SAL_CALL AcceleratorConfigurationReader::setDocumentLocator(const css::uno::Reference< css::xml::sax::XLocator >& xLocator)
throw(css::xml::sax::SAXException,
css::uno::RuntimeException, std::exception )
@@ -239,7 +227,6 @@ void SAL_CALL AcceleratorConfigurationReader::setDocumentLocator(const css::uno:
m_xLocator = xLocator;
}
-
AcceleratorConfigurationReader::EXMLElement AcceleratorConfigurationReader::implst_classifyElement(const OUString& sElement)
{
AcceleratorConfigurationReader::EXMLElement eElement;
@@ -256,7 +243,6 @@ AcceleratorConfigurationReader::EXMLElement AcceleratorConfigurationReader::impl
return eElement;
}
-
AcceleratorConfigurationReader::EXMLAttribute AcceleratorConfigurationReader::implst_classifyAttribute(const OUString& sAttribute)
{
AcceleratorConfigurationReader::EXMLAttribute eAttribute;
@@ -281,7 +267,6 @@ AcceleratorConfigurationReader::EXMLAttribute AcceleratorConfigurationReader::im
return eAttribute;
}
-
OUString AcceleratorConfigurationReader::implts_getErrorLineString()
{
if (!m_xLocator.is())