summaryrefslogtreecommitdiff
path: root/include/sfx2/sidebar/Theme.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/sfx2/sidebar/Theme.hxx')
-rw-r--r--include/sfx2/sidebar/Theme.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/sfx2/sidebar/Theme.hxx b/include/sfx2/sidebar/Theme.hxx
index d8cc59f9932d..466e20da0d56 100644
--- a/include/sfx2/sidebar/Theme.hxx
+++ b/include/sfx2/sidebar/Theme.hxx
@@ -163,49 +163,49 @@ public:
// beans::XPropertySet
virtual cssu::Reference<css::beans::XPropertySetInfo> SAL_CALL getPropertySetInfo (void)
- throw(cssu::RuntimeException);
+ throw(cssu::RuntimeException, std::exception);
virtual void SAL_CALL setPropertyValue (
const ::rtl::OUString& rsPropertyName,
const cssu::Any& rValue)
- throw(cssu::RuntimeException);
+ throw(cssu::RuntimeException, std::exception);
virtual cssu::Any SAL_CALL getPropertyValue (
const ::rtl::OUString& rsPropertyName)
throw(css::beans::UnknownPropertyException,
css::lang::WrappedTargetException,
- cssu::RuntimeException);
+ cssu::RuntimeException, std::exception);
virtual void SAL_CALL addPropertyChangeListener(
const ::rtl::OUString& rsPropertyName,
const cssu::Reference<css::beans::XPropertyChangeListener>& rxListener)
throw(css::beans::UnknownPropertyException,
css::lang::WrappedTargetException,
- cssu::RuntimeException);
+ cssu::RuntimeException, std::exception);
virtual void SAL_CALL removePropertyChangeListener(
const ::rtl::OUString& rsPropertyName,
const cssu::Reference<css::beans::XPropertyChangeListener>& rxListener)
throw(css::beans::UnknownPropertyException,
css::lang::WrappedTargetException,
- cssu::RuntimeException);
+ cssu::RuntimeException, std::exception);
virtual void SAL_CALL addVetoableChangeListener(
const ::rtl::OUString& rsPropertyName,
const cssu::Reference<css::beans::XVetoableChangeListener>& rxListener)
throw(css::beans::UnknownPropertyException,
css::lang::WrappedTargetException,
- cssu::RuntimeException);
+ cssu::RuntimeException, std::exception);
virtual void SAL_CALL removeVetoableChangeListener(
const ::rtl::OUString& rsPropertyName,
const cssu::Reference<css::beans::XVetoableChangeListener>& rxListener)
throw(css::beans::UnknownPropertyException,
css::lang::WrappedTargetException,
- cssu::RuntimeException);
+ cssu::RuntimeException, std::exception);
// beans::XPropertySetInfo
virtual cssu::Sequence<css::beans::Property> SAL_CALL getProperties (void)
- throw(cssu::RuntimeException);
+ throw(cssu::RuntimeException, std::exception);
virtual css::beans::Property SAL_CALL getPropertyByName (const ::rtl::OUString& rsName)
throw(css::beans::UnknownPropertyException,
- cssu::RuntimeException);
+ cssu::RuntimeException, std::exception);
virtual sal_Bool SAL_CALL hasPropertyByName (const ::rtl::OUString& rsName)
- throw(cssu::RuntimeException);
+ throw(cssu::RuntimeException, std::exception);
private:
static Theme& GetCurrentTheme();