summaryrefslogtreecommitdiff
path: root/include/basic/sbx.hxx
diff options
context:
space:
mode:
authorArnaud Versini <arnaud.versini@gmail.com>2016-07-10 16:32:32 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-07-11 07:28:16 +0000
commit9b0995439e02981c47f6234b33e6e8988fadf315 (patch)
tree1b77d0b5b18d7ad4d47bde0e0de52242ee02c505 /include/basic/sbx.hxx
parentf41eb66302208f384a475fb20c98b6d1b0676cb6 (diff)
BASIC : Remove useless 16bits Remove function from SbxArray
Change-Id: I050a034437d3370a28c9e5ab47abee369e634f7d Reviewed-on: https://gerrit.libreoffice.org/27089 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/basic/sbx.hxx')
-rw-r--r--include/basic/sbx.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/basic/sbx.hxx b/include/basic/sbx.hxx
index a75a8d47d876..e304e0912551 100644
--- a/include/basic/sbx.hxx
+++ b/include/basic/sbx.hxx
@@ -147,7 +147,6 @@ public:
SbxVariable* Get( sal_uInt16 );
void Put( SbxVariable*, sal_uInt16 );
void Insert( SbxVariable*, sal_uInt16 );
- void Remove( sal_uInt16 );
void Remove( SbxVariable* );
void Merge( SbxArray* );
OUString GetAlias( sal_uInt16 );
@@ -161,7 +160,7 @@ public:
SbxVariable* Get32( sal_uInt32 );
void Put32( SbxVariable*, sal_uInt32 );
void Insert32( SbxVariable*, sal_uInt32 );
- void Remove32( sal_uInt32 );
+ void Remove( sal_uInt32 );
};
// SbxDimArray is an array that can dimensioned using BASIC conventions.