summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-11-09 09:34:17 +0000
committerCaolán McNamara <caolanm@redhat.com>2016-11-09 09:36:19 +0000
commite21ef810e178e37f202e5ab8d0b582b24d5ce001 (patch)
tree8528604f7b65913c690c03ed7c2bcdfc6979cb60 /include
parent80af87b0de526e06113a57f62f8f2284ecaaa45a (diff)
crashtesting: unexpected exception on novell403458-1.pptx
since commit 4bcf1872bbe9db1388769485a7e4c0cbcce3d53c Date: Thu Oct 13 23:43:41 2016 +0200 chartx: fix sparse chart import because - Matrix< Any > aMatrix( rDataSeq.maData.size(), 1 ); + Matrix< Any > aMatrix( rDataSeq.mnPointCount, 1 ); where rDataSeq.mnPointCount is -1 Change-Id: I4bb4805dd81a342d4c0ce24e3240154daf53b452
Diffstat (limited to 'include')
-rw-r--r--include/oox/core/fastparser.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/oox/core/fastparser.hxx b/include/oox/core/fastparser.hxx
index 0b48a741b91b..4497d8b330bb 100644
--- a/include/oox/core/fastparser.hxx
+++ b/include/oox/core/fastparser.hxx
@@ -74,19 +74,19 @@ public:
/** Parses the passed SAX input source.
@param bCloseStream True = closes the stream in the input source after parsing. */
void parseStream( const css::xml::sax::InputSource& rInputSource, bool bCloseStream = false )
- throw( css::xml::sax::SAXException, css::io::IOException, css::uno::RuntimeException );
+ throw( css::xml::sax::SAXException, css::io::IOException, css::uno::RuntimeException, std::exception );
/** Parses the passed input stream.
@param bCloseStream True = closes the passed stream after parsing. */
void parseStream(
const css::uno::Reference< css::io::XInputStream >& rxInStream,
const OUString& rStreamName )
- throw( css::xml::sax::SAXException, css::io::IOException, css::uno::RuntimeException );
+ throw( css::xml::sax::SAXException, css::io::IOException, css::uno::RuntimeException, std::exception );
/** Parses a stream from the passed storage with the specified name.
@param bCloseStream True = closes the stream after parsing. */
void parseStream( StorageBase& rStorage, const OUString& rStreamName )
- throw( css::xml::sax::SAXException, css::io::IOException, css::uno::RuntimeException );
+ throw( css::xml::sax::SAXException, css::io::IOException, css::uno::RuntimeException, std::exception );
const css::uno::Reference< css::xml::sax::XFastTokenHandler >&
getTokenHandler() const { return mxTokenHandler; }