diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-24 12:00:56 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-24 13:03:47 +0100 |
commit | 2235d53bde2c8be7ed07e5cb2969e236083da4df (patch) | |
tree | 63e4260376708072015c1f1679390376dce1c138 /dbaccess | |
parent | eb410d6dddeecc2b6c0c13cb57b39cd59012c250 (diff) |
coverity#1000846 Uncaught exception
Change-Id: I4e92ad97e7b3567c028d63ac0936fa9cdef12e24
Diffstat (limited to 'dbaccess')
-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 94c6edef03d2..8ce4327b6d2c 100644 --- a/dbaccess/source/ui/uno/textconnectionsettings_uno.cxx +++ b/dbaccess/source/ui/uno/textconnectionsettings_uno.cxx @@ -95,7 +95,7 @@ namespace dbaui { ODatabaseAdministrationDialog::removePropertyChangeListener(p1, p2); } virtual void SAL_CALL addVetoableChangeListener(const OUString& p1, const css::uno::Reference<css::beans::XVetoableChangeListener>& p2) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { ODatabaseAdministrationDialog::addVetoableChangeListener(p1, p2); } - virtual void SAL_CALL removeVetoableChangeListener(const OUString& p1, const css::uno::Reference<css::beans::XVetoableChangeListener>& p2) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE + virtual void SAL_CALL removeVetoableChangeListener(const OUString& p1, const css::uno::Reference<css::beans::XVetoableChangeListener>& p2) throw (css::beans::UnknownPropertyException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE { ODatabaseAdministrationDialog::removeVetoableChangeListener(p1, p2); } virtual void SAL_CALL setTitle(const OUString& p1) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { ODatabaseAdministrationDialog::setTitle(p1); } |