diff options
Diffstat (limited to 'sc/source/ui/vba/vbasheetobjects.cxx')
-rw-r--r-- | sc/source/ui/vba/vbasheetobjects.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/vba/vbasheetobjects.cxx b/sc/source/ui/vba/vbasheetobjects.cxx index ab8c102ced38..86343729b4a8 100644 --- a/sc/source/ui/vba/vbasheetobjects.cxx +++ b/sc/source/ui/vba/vbasheetobjects.cxx @@ -83,11 +83,11 @@ public: const uno::Type& rVbaType ); /** Returns the VBA helper interface of the VBA collection object. */ - inline const uno::Reference< XHelperInterface >& getParent() const { return mxParent; } + const uno::Reference< XHelperInterface >& getParent() const { return mxParent; } /** Returns the component context of the VBA collection object. */ - inline const uno::Reference< uno::XComponentContext >& getContext() const { return mxContext; } + const uno::Reference< uno::XComponentContext >& getContext() const { return mxContext; } /** Returns the VBA type information of the objects in this container. */ - inline const uno::Type& getVbaType() const { return maVbaType; } + const uno::Type& getVbaType() const { return maVbaType; } /** Collects all shapes supported by this instance and inserts them into the internal shape vector. |