diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-27 19:12:24 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-27 19:12:24 +0100 |
commit | a7458fba26db19f04b72ba6bb2da2215e523c20e (patch) | |
tree | 3b016bf844596270bc48214ee0cf7dc13b0ee964 /dbaccess | |
parent | 8e4560e709fb565c69f1950387a812e543d98e22 (diff) |
Work around MSC "'override' cannot be used with 'inline'" bug
Change-Id: I4aeccc3957048a40e705654bf6b9972cc03648b6
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/core/inc/tablecontainer.hxx | 4 | ||||
-rw-r--r-- | dbaccess/source/core/inc/viewcontainer.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/core/inc/tablecontainer.hxx b/dbaccess/source/core/inc/tablecontainer.hxx index f2d519804489..ed41344415cd 100644 --- a/dbaccess/source/core/inc/tablecontainer.hxx +++ b/dbaccess/source/core/inc/tablecontainer.hxx @@ -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(); diff --git a/dbaccess/source/core/inc/viewcontainer.hxx b/dbaccess/source/core/inc/viewcontainer.hxx index f17ef928e498..bde6ad2cd2ee 100644 --- a/dbaccess/source/core/inc/viewcontainer.hxx +++ b/dbaccess/source/core/inc/viewcontainer.hxx @@ -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(); |