diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-12-21 11:56:37 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-12-25 18:21:10 +0100 |
commit | d07f0997c54e9cef31d996ebeb2aabfb4b4e0265 (patch) | |
tree | 421c36b9ba7a345d62caf85c67b537f4c811f338 /sw/inc | |
parent | f9fe806df0991bf3d24e38c73077b5402df4ba9b (diff) |
sal_uInt16 to size_t
Change-Id: I5b63396fba55b717f35aee5718dd348a9d795786
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/doc.hxx | 4 | ||||
-rw-r--r-- | sw/inc/editsh.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx index 8ca9f643c72c..a7c8926cd4f2 100644 --- a/sw/inc/doc.hxx +++ b/sw/inc/doc.hxx @@ -880,8 +880,8 @@ public: // Table formatting const SwFrmFmts* GetTblFrmFmts() const { return mpTblFrmFmtTbl; } SwFrmFmts* GetTblFrmFmts() { return mpTblFrmFmtTbl; } - sal_uInt16 GetTblFrmFmtCount( bool bUsed ) const; - SwFrmFmt& GetTblFrmFmt(sal_uInt16 nFmt, bool bUsed ) const; + size_t GetTblFrmFmtCount( bool bUsed ) const; + SwFrmFmt& GetTblFrmFmt(size_t nFmt, bool bUsed ) const; SwTableFmt* MakeTblFrmFmt(const OUString &rFmtName, SwFrmFmt *pDerivedFrom); void DelTblFrmFmt( SwTableFmt* pFmt ); SwTableFmt* FindTblFmtByName( const OUString& rName, bool bAll = false ) const; diff --git a/sw/inc/editsh.hxx b/sw/inc/editsh.hxx index a8b4d7041e2c..815dfa1ac960 100644 --- a/sw/inc/editsh.hxx +++ b/sw/inc/editsh.hxx @@ -285,8 +285,8 @@ public: sal_uInt16 GetCurLang() const; /// TABLE - sal_uInt16 GetTblFrmFmtCount( bool bUsed = false ) const; - SwFrmFmt& GetTblFrmFmt(sal_uInt16 nFmt, bool bUsed = false ) const; + size_t GetTblFrmFmtCount( bool bUsed = false ) const; + SwFrmFmt& GetTblFrmFmt(size_t nFmt, bool bUsed = false ) const; OUString GetUniqueTblName() const; /// CHAR |