summaryrefslogtreecommitdiff
path: root/include/basic/sbxobj.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/basic/sbxobj.hxx')
-rw-r--r--include/basic/sbxobj.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/basic/sbxobj.hxx b/include/basic/sbxobj.hxx
index 6a0cf20ca2c9..65176320dd57 100644
--- a/include/basic/sbxobj.hxx
+++ b/include/basic/sbxobj.hxx
@@ -74,9 +74,9 @@ public:
virtual void Remove( SbxVariable* );
// Direct access on arrays
- SbxArray* GetMethods() { return pMethods; }
- SbxArray* GetProperties() { return pProps; }
- SbxArray* GetObjects() { return pObjs; }
+ SbxArray* GetMethods() { return pMethods.get(); }
+ SbxArray* GetProperties() { return pProps.get(); }
+ SbxArray* GetObjects() { return pObjs.get(); }
// Debugging
void Dump( SvStream&, bool bDumpAll );
};