Kaydet (Commit) a7458fba authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Work around MSC "'override' cannot be used with 'inline'" bug

Change-Id: I4aeccc3957048a40e705654bf6b9972cc03648b6
üst 8e4560e7
......@@ -63,8 +63,8 @@ namespace dbaccess
virtual void SAL_CALL disposing() SAL_OVERRIDE;
inline virtual void SAL_CALL acquire() throw() SAL_OVERRIDE { OFilteredContainer::acquire();}
inline virtual void SAL_CALL release() throw() SAL_OVERRIDE { OFilteredContainer::release();}
virtual void SAL_CALL acquire() throw() SAL_OVERRIDE { OFilteredContainer::acquire();}
virtual void SAL_CALL release() throw() SAL_OVERRIDE { OFilteredContainer::release();}
// ::com::sun::star::lang::XServiceInfo
DECLARE_SERVICE_INFO();
......
......@@ -74,8 +74,8 @@ namespace dbaccess
virtual OUString getTableTypeRestriction() const SAL_OVERRIDE;
private:
inline virtual void SAL_CALL acquire() throw() SAL_OVERRIDE { OFilteredContainer::acquire();}
inline virtual void SAL_CALL release() throw() SAL_OVERRIDE { OFilteredContainer::release();}
virtual void SAL_CALL acquire() throw() SAL_OVERRIDE { OFilteredContainer::acquire();}
virtual void SAL_CALL release() throw() SAL_OVERRIDE { OFilteredContainer::release();}
// ::com::sun::star::lang::XServiceInfo
DECLARE_SERVICE_INFO();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment