use SAL_CALL - fix bulid in msvc

This commit is contained in:
Korrawit Pruegsanusak
2012-01-29 18:20:29 +07:00
committed by Michael Meeks
parent e8bb827571
commit a1275f841a
3 changed files with 6 additions and 6 deletions

View File

@@ -158,13 +158,13 @@ public:
private:
virtual ~ChangesListener() {}
virtual void disposing(lang::EventObject const &) throw (RuntimeException)
virtual void SAL_CALL disposing(lang::EventObject const &) throw (RuntimeException)
{
osl::MutexGuard g(editor_.mutex_);
editor_.notifier_.clear();
}
virtual void propertiesChange(
virtual void SAL_CALL propertiesChange(
Sequence< beans::PropertyChangeEvent > const &) throw (RuntimeException)
{
SolarMutexGuard g;

View File

@@ -66,14 +66,14 @@ public:
private:
virtual ~ChangesListener() {}
virtual void disposing(css::lang::EventObject const &)
virtual void SAL_CALL disposing(css::lang::EventObject const &)
throw (css::uno::RuntimeException)
{
osl::MutexGuard g(editor_.m_mutex);
editor_.m_notifier.clear();
}
virtual void propertiesChange(
virtual void SAL_CALL propertiesChange(
css::uno::Sequence< css::beans::PropertyChangeEvent > const &)
throw (css::uno::RuntimeException)
{

View File

@@ -231,14 +231,14 @@ public:
private:
virtual ~ChangesListener() {}
virtual void disposing(css::lang::EventObject const &)
virtual void SAL_CALL disposing(css::lang::EventObject const &)
throw (css::uno::RuntimeException)
{
osl::MutexGuard g(editor_.mutex_);
editor_.notifier_.clear();
}
virtual void propertiesChange(
virtual void SAL_CALL propertiesChange(
css::uno::Sequence< css::beans::PropertyChangeEvent > const &)
throw (css::uno::RuntimeException)
{