summaryrefslogtreecommitdiffstats
path: root/xmlsecurity/source/helper/xsecparser.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-06-29 18:30:34 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-06-29 18:38:14 +0200
commitb6d97514cdca32129142cd937ac0cbda3113f562 (patch)
tree802c73760715910cb707dd05079758d07edb05a6 /xmlsecurity/source/helper/xsecparser.cxx
parenti#108348 sax::Converter: support negative date and dateTime (diff)
downloadcore-b6d97514cdca32129142cd937ac0cbda3113f562.tar.gz
core-b6d97514cdca32129142cd937ac0cbda3113f562.zip
reduce some spacing
Change-Id: I72d494b1c0ff5ed3c52ae6a078815f497e4dd647
Diffstat (limited to 'xmlsecurity/source/helper/xsecparser.cxx')
-rw-r--r--xmlsecurity/source/helper/xsecparser.cxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/xmlsecurity/source/helper/xsecparser.cxx b/xmlsecurity/source/helper/xsecparser.cxx
index 230789cb1cab..da915497b8df 100644
--- a/xmlsecurity/source/helper/xsecparser.cxx
+++ b/xmlsecurity/source/helper/xsecparser.cxx
@@ -181,14 +181,13 @@ void SAL_CALL XSecParser::startElement(
{//getCaughtException MUST be the first line in the catch block
cssu::Any exc = cppu::getCaughtException();
throw cssxs::SAXException(
- OUString(
- "xmlsecurity: Exception in XSecParser::startElement"),
+ "xmlsecurity: Exception in XSecParser::startElement",
0, exc);
}
catch (...)
{
throw cssxs::SAXException(
- OUString("xmlsecurity: unexpected exception in XSecParser::startElement"), 0,
+ "xmlsecurity: unexpected exception in XSecParser::startElement", 0,
cssu::Any());
}
}
@@ -254,14 +253,13 @@ void SAL_CALL XSecParser::endElement( const OUString& aName )
{//getCaughtException MUST be the first line in the catch block
cssu::Any exc = cppu::getCaughtException();
throw cssxs::SAXException(
- OUString(
- "xmlsecurity: Exception in XSecParser::endElement"),
+ "xmlsecurity: Exception in XSecParser::endElement",
0, exc);
}
catch (...)
{
throw cssxs::SAXException(
- OUString("xmlsecurity: unexpected exception in XSecParser::endElement"), 0,
+ "xmlsecurity: unexpected exception in XSecParser::endElement", 0,
cssu::Any());
}
}