diff options
author | Korrawit Pruegsanusak <detective.conan.1412@gmail.com> | 2012-01-29 18:20:29 +0700 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-01-30 11:41:52 +0000 |
commit | a1275f841a1ca601cadd2e6ec130af0703a328e5 (patch) | |
tree | bd720da30175b7b69f03eb4907ecd12f2d948c28 /dbaccess | |
parent | e8bb827571f540ac4af2247cb11239bb96876669 (diff) |
use SAL_CALL - fix bulid in msvc
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/control/sqledit.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/control/sqledit.cxx b/dbaccess/source/ui/control/sqledit.cxx index 4fe5224bafb1..5a4788332900 100644 --- a/dbaccess/source/ui/control/sqledit.cxx +++ b/dbaccess/source/ui/control/sqledit.cxx @@ -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) { |