diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-10 09:56:15 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-10 11:21:04 +0000 |
commit | 60f629882f6e90d086e55306028b9d6a5324b476 (patch) | |
tree | 7bbbadcb7a865f7aee3e15af341c3e2ba4acb5dc /sc/inc | |
parent | 2b12a5b87b1de9ae95d9562ba21201890b1100c5 (diff) |
coverity#1130467 Uncaught exception
Change-Id: Idc4020921086bd2e5d51acf73294150eb158fd06
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/notesuno.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sc/inc/notesuno.hxx b/sc/inc/notesuno.hxx index db2fbe4d2f7f..d48237688886 100644 --- a/sc/inc/notesuno.hxx +++ b/sc/inc/notesuno.hxx @@ -87,7 +87,9 @@ public: /// XSheetAnnotation virtual ::com::sun::star::table::CellAddress SAL_CALL getPosition() throw(::com::sun::star::uno::RuntimeException); - virtual OUString SAL_CALL getAuthor() throw(::com::sun::star::uno::RuntimeException); + virtual OUString SAL_CALL getAuthor() + throw(::com::sun::star::uno::RuntimeException, + std::exception); virtual OUString SAL_CALL getDate() throw(::com::sun::star::uno::RuntimeException); virtual sal_Bool SAL_CALL getIsVisible() throw(::com::sun::star::uno::RuntimeException, |