summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-12-02 09:19:24 +0200
committerNoel Grandin <noel@peralex.com>2013-12-03 11:34:48 +0200
commitca015ac13100bb1dc9788990cc7189ce77705480 (patch)
tree4ce8c5872da3da63b40692071b9fb6e22df3b6ce /include
parentc310019e75520af3773055723538f06a1c332e4a (diff)
convert formula::FormEditData from xub_StrLen->sal_Int32
Change-Id: I0127079ef3ee6bde8e36f2a83ef1f568b9f15568
Diffstat (limited to 'include')
-rw-r--r--include/formula/formdata.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/formula/formdata.hxx b/include/formula/formdata.hxx
index a772823e56fd..426cd3465667 100644
--- a/include/formula/formdata.hxx
+++ b/include/formula/formdata.hxx
@@ -37,7 +37,7 @@ public:
sal_Bool HasParent() const { return pParent != NULL; }
inline sal_uInt16 GetMode() const { return nMode; }
- inline xub_StrLen GetFStart() const { return nFStart; }
+ inline sal_Int32 GetFStart() const { return nFStart; }
inline sal_uInt16 GetCatSel() const { return nCatSel; }
inline sal_uInt16 GetFuncSel() const { return nFuncSel; }
inline sal_uInt16 GetOffset() const { return nOffset; }
@@ -48,7 +48,7 @@ public:
inline const Selection& GetSelection()const { return aSelection;}
inline void SetMode( sal_uInt16 nNew ) { nMode = nNew; }
- inline void SetFStart( xub_StrLen nNew ) { nFStart = nNew; }
+ inline void SetFStart( sal_Int32 nNew ) { nFStart = nNew; }
inline void SetCatSel( sal_uInt16 nNew ) { nCatSel = nNew; }
inline void SetFuncSel( sal_uInt16 nNew ) { nFuncSel = nNew; }
inline void SetOffset( sal_uInt16 nNew ) { nOffset = nNew; }
@@ -65,7 +65,7 @@ protected:
FormEditData* pParent; // fuer Verschachtelung
private:
sal_uInt16 nMode; // enum ScFormulaDlgMode
- xub_StrLen nFStart;
+ sal_Int32 nFStart;
sal_uInt16 nCatSel;
sal_uInt16 nFuncSel;
sal_uInt16 nOffset;