summaryrefslogtreecommitdiff
path: root/filter/source/xsltfilter/LibXSLTTransformer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/xsltfilter/LibXSLTTransformer.cxx')
-rw-r--r--filter/source/xsltfilter/LibXSLTTransformer.cxx13
1 files changed, 4 insertions, 9 deletions
diff --git a/filter/source/xsltfilter/LibXSLTTransformer.cxx b/filter/source/xsltfilter/LibXSLTTransformer.cxx
index f3b8265f0625..d828cbd91991 100644
--- a/filter/source/xsltfilter/LibXSLTTransformer.cxx
+++ b/filter/source/xsltfilter/LibXSLTTransformer.cxx
@@ -374,13 +374,12 @@ namespace XSLT
void
LibXSLTTransformer::setInputStream(
const css::uno::Reference<XInputStream>& inputStream)
- throw (RuntimeException, std::exception)
{
m_rInputStream = inputStream;
}
css::uno::Reference<XInputStream>
- LibXSLTTransformer::getInputStream() throw (RuntimeException, std::exception)
+ LibXSLTTransformer::getInputStream()
{
return m_rInputStream;
}
@@ -388,20 +387,18 @@ namespace XSLT
void
LibXSLTTransformer::setOutputStream(
const css::uno::Reference<XOutputStream>& outputStream)
- throw (RuntimeException, std::exception)
{
m_rOutputStream = outputStream;
}
css::uno::Reference<XOutputStream>
- LibXSLTTransformer::getOutputStream() throw (RuntimeException, std::exception)
+ LibXSLTTransformer::getOutputStream()
{
return m_rOutputStream;
}
void
LibXSLTTransformer::addListener(const css::uno::Reference<XStreamListener>& listener)
- throw (RuntimeException, std::exception)
{
m_listeners.insert(m_listeners.begin(), listener);
}
@@ -409,13 +406,12 @@ namespace XSLT
void
LibXSLTTransformer::removeListener(
const css::uno::Reference<XStreamListener>& listener)
- throw (RuntimeException, std::exception)
{
m_listeners.remove(listener);
}
void
- LibXSLTTransformer::start() throw (RuntimeException, std::exception)
+ LibXSLTTransformer::start()
{
ListenerList::iterator it;
ListenerList* l = &m_listeners;
@@ -460,7 +456,7 @@ namespace XSLT
}
void
- LibXSLTTransformer::terminate() throw (RuntimeException, std::exception)
+ LibXSLTTransformer::terminate()
{
if (m_Reader.is())
{
@@ -474,7 +470,6 @@ namespace XSLT
void
LibXSLTTransformer::initialize(const Sequence<Any>& args)
- throw (RuntimeException, std::exception)
{
Sequence<Any> params;
if (!(args[0] >>= params))