summaryrefslogtreecommitdiffstats
path: root/include/formula
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-29 13:56:09 +0200
committerNoel Grandin <noel@peralex.com>2013-12-03 11:34:46 +0200
commit35afee4de18437e4491e04254f21b50372b08ac4 (patch)
tree96f8570cb2db7c9845585fd85625abe1a427536d /include/formula
parentconvert xub_StrLen->sal_Int32 in unotools (diff)
downloadcore-35afee4de18437e4491e04254f21b50372b08ac4.tar.gz
core-35afee4de18437e4491e04254f21b50372b08ac4.zip
convert IFormulaEditorHelper::*Selection methods from xub_StrLen to sal_Int32
Change-Id: Ia7a6241c651106427e636bdc08085b97a2a41407
Diffstat (limited to 'include/formula')
-rw-r--r--include/formula/IFunctionDescription.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/formula/IFunctionDescription.hxx b/include/formula/IFunctionDescription.hxx
index a22b71a47303..e27d82d1a8b4 100644
--- a/include/formula/IFunctionDescription.hxx
+++ b/include/formula/IFunctionDescription.hxx
@@ -135,8 +135,8 @@ namespace formula
virtual OUString getCurrentFormula() const = 0;
virtual void setCurrentFormula(const OUString& _sReplacement) = 0;
- virtual void getSelection(xub_StrLen& _nStart,xub_StrLen& _nEnd) const = 0;
- virtual void setSelection(xub_StrLen _nStart,xub_StrLen _nEnd) = 0;
+ virtual void getSelection(sal_Int32& _nStart, sal_Int32& _nEnd) const = 0;
+ virtual void setSelection(sal_Int32 _nStart, sal_Int32 _nEnd) = 0;
virtual FormEditData* getFormEditData() const = 0;
virtual bool calculateValue(const OUString& _sExpression, OUString& _rResult) = 0;