From b2df899dbb038acfe3c47eef303345ceaf3725b8 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 30 Jan 2015 09:10:34 +0000 Subject: fix build Change-Id: Ib2ab6140c45b858acbe0b97870d2d64c7189d875 --- sc/source/core/tool/address.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sc') diff --git a/sc/source/core/tool/address.cxx b/sc/source/core/tool/address.cxx index 69ed16ba666d..f5f1018297a7 100644 --- a/sc/source/core/tool/address.cxx +++ b/sc/source/core/tool/address.cxx @@ -1710,14 +1710,14 @@ template static inline void lcl_a1_append_c ( T &rString, int nCol lcl_ScColToAlpha( rString, sal::static_int_cast(nCol) ); } -template static inline void lcl_a1_append_r ( T &rString, int nRow, bool bIsAbs ) +template static inline void lcl_a1_append_r ( T &rString, sal_Int32 nRow, bool bIsAbs ) { if ( bIsAbs ) rString.append("$"); rString.append( nRow + 1 ); } -template static inline void lcl_r1c1_append_c ( T &rString, int nCol, bool bIsAbs, +template static inline void lcl_r1c1_append_c ( T &rString, sal_Int32 nCol, bool bIsAbs, const ScAddress::Details& rDetails ) { rString.append("C"); @@ -1734,7 +1734,7 @@ template static inline void lcl_r1c1_append_c ( T &rString, int nC } } -template static inline void lcl_r1c1_append_r ( T &rString, int nRow, bool bIsAbs, +template static inline void lcl_r1c1_append_r ( T &rString, sal_Int32 nRow, bool bIsAbs, const ScAddress::Details& rDetails ) { rString.append("R"); -- cgit