diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-07-23 14:03:48 +0200 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-07-26 14:25:25 +0200 |
commit | 3e7004c3acb1807aa758d84f7b44ba867196b7b5 (patch) | |
tree | a2fddcb37716ce267789f50159a1c7e8d84d2c1d /sw/inc/expfld.hxx | |
parent | 4f2b97d4c763b711992968f86b4cbf36342681f7 (diff) |
sal_uInt16 to size_t/bool in SwInputFieldList
Change-Id: Ib54e747abaf4e7a911dd3986d27f21a96eaa6120
Diffstat (limited to 'sw/inc/expfld.hxx')
-rw-r--r-- | sw/inc/expfld.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/expfld.hxx b/sw/inc/expfld.hxx index eb588342e2ec..121125ec1be9 100644 --- a/sw/inc/expfld.hxx +++ b/sw/inc/expfld.hxx @@ -357,17 +357,17 @@ public: SwInputFieldList( SwEditShell* pShell, bool bBuildTmpLst = false ); ~SwInputFieldList(); - sal_uInt16 Count() const; - SwField* GetField(sal_uInt16 nId); + size_t Count() const; + SwField* GetField(size_t nId); - void GotoFieldPos(sal_uInt16 nId); + void GotoFieldPos(size_t nId); void PushCrsr(); void PopCrsr(); - /** Put all that are new into SortLst for updating. @return count. + /** Put all that are new into SortLst for updating. @return true if not empty. (For Glossary: only update its input-fields). Compare TmpLst with current fields. */ - sal_uInt16 BuildSortLst(); + bool BuildSortLst(); private: SwEditShell* pSh; |