summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorArnaud Versini <arnaud.versini@gmail.com>2016-01-10 17:09:26 +0100
committerNoel Grandin <noelgrandin@gmail.com>2016-01-12 06:06:49 +0000
commita5c232831395f8987a8395816c5a60105a52b6a0 (patch)
tree6cb8b89e61f40e0e539a9a19106a4a8b42dc8447 /include
parentb4b0cc2a5eef42434444e51fda4a13fc48183aa0 (diff)
BASIC: Store directly SbxVarEntry in SbxArray
Change-Id: I64ae6c2a45e0ed880f5b76ca2ad420d684fdfeb4 Reviewed-on: https://gerrit.libreoffice.org/21308 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Arnaud Versini <arnaud.versini@libreoffice.org>
Diffstat (limited to 'include')
-rw-r--r--include/basic/sbx.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/basic/sbx.hxx b/include/basic/sbx.hxx
index 47d7687146a0..20249eda8f48 100644
--- a/include/basic/sbx.hxx
+++ b/include/basic/sbx.hxx
@@ -118,7 +118,7 @@ struct SbxVarEntry;
class BASIC_DLLPUBLIC SbxArray : public SbxBase
{
- typedef std::vector<SbxVarEntry*> VarEntriesType;
+ typedef std::vector<SbxVarEntry> VarEntriesType;
// #100883 Method to set method directly to parameter array
friend class SbMethod;