diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-07 09:53:35 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-07 10:14:50 +0100 |
commit | d816acd0e21e996ce00658ffe8d694b96c5741c1 (patch) | |
tree | 6ac2515f30a88eb54f5a38eed8a9efd05da10bfd /framework/source | |
parent | b6e73c54c689e0b1709ea85006968ddb9d75dc95 (diff) |
coverity#706548 Uncaught exception
Change-Id: Ie3be6d503b50cfa86be8fff162d01a72c6b47bf7
Diffstat (limited to 'framework/source')
-rw-r--r-- | framework/source/fwe/xml/menuconfiguration.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/framework/source/fwe/xml/menuconfiguration.cxx b/framework/source/fwe/xml/menuconfiguration.cxx index 8b87cdde2b23..e30b890de033 100644 --- a/framework/source/fwe/xml/menuconfiguration.cxx +++ b/framework/source/fwe/xml/menuconfiguration.cxx @@ -100,10 +100,9 @@ throw ( WrappedTargetException ) } } -PopupMenu* MenuConfiguration::CreateBookmarkMenu( - ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& rFrame, - const OUString& aURL ) -throw ( ::com::sun::star::lang::WrappedTargetException ) +PopupMenu* MenuConfiguration::CreateBookmarkMenu(css::uno::Reference<css::frame::XFrame >& rFrame, const OUString& aURL) + throw (css::lang::WrappedTargetException, + css::uno::RuntimeException) { if ( aURL == BOOKMARK_NEWMENU ) return new BmkMenu( rFrame, BmkMenu::BMK_NEWMENU ); |