diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-24 12:01:43 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-24 13:03:47 +0100 |
commit | 83878c413dbe99f753e0a2f803fb5ef369eb8b26 (patch) | |
tree | 214b516b82420fb76a21f6a1a7b6465307438869 /dbaccess/source/ui/uno | |
parent | 2235d53bde2c8be7ed07e5cb2969e236083da4df (diff) |
coverity#1000845 Uncaught exception
Change-Id: I968baef18f9a14301d69a5eaad07ceb8b9633062
Diffstat (limited to 'dbaccess/source/ui/uno')
-rw-r--r-- | dbaccess/source/ui/uno/textconnectionsettings_uno.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/uno/textconnectionsettings_uno.cxx b/dbaccess/source/ui/uno/textconnectionsettings_uno.cxx index 8ce4327b6d2c..c6b34e5fe940 100644 --- a/dbaccess/source/ui/uno/textconnectionsettings_uno.cxx +++ b/dbaccess/source/ui/uno/textconnectionsettings_uno.cxx @@ -89,7 +89,7 @@ namespace dbaui { ODatabaseAdministrationDialog::setPropertyValue(p1, p2); } virtual css::uno::Any SAL_CALL getPropertyValue(const OUString& p1) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return ODatabaseAdministrationDialog::getPropertyValue(p1); } - virtual void SAL_CALL addPropertyChangeListener(const OUString& p1, const css::uno::Reference<css::beans::XPropertyChangeListener>& p2) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE + virtual void SAL_CALL addPropertyChangeListener(const OUString& p1, const css::uno::Reference<css::beans::XPropertyChangeListener>& p2) throw (css::beans::UnknownPropertyException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE { ODatabaseAdministrationDialog::addPropertyChangeListener(p1, p2); } virtual void SAL_CALL removePropertyChangeListener(const OUString& p1, const css::uno::Reference<css::beans::XPropertyChangeListener>& p2) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { ODatabaseAdministrationDialog::removePropertyChangeListener(p1, p2); } |