diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-30 09:10:34 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-30 09:10:34 +0000 |
commit | b2df899dbb038acfe3c47eef303345ceaf3725b8 (patch) | |
tree | cda01c84fed276dce11f23d9630c14e196919e63 /sc | |
parent | 99674f754323ca78ac45499439b9983b31ebd444 (diff) |
fix build
Change-Id: Ib2ab6140c45b858acbe0b97870d2d64c7189d875
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/tool/address.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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 <typename T > static inline void lcl_a1_append_c ( T &rString, int nCol lcl_ScColToAlpha( rString, sal::static_int_cast<SCCOL>(nCol) ); } -template <typename T > static inline void lcl_a1_append_r ( T &rString, int nRow, bool bIsAbs ) +template <typename T > static inline void lcl_a1_append_r ( T &rString, sal_Int32 nRow, bool bIsAbs ) { if ( bIsAbs ) rString.append("$"); rString.append( nRow + 1 ); } -template <typename T > static inline void lcl_r1c1_append_c ( T &rString, int nCol, bool bIsAbs, +template <typename T > 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 <typename T > static inline void lcl_r1c1_append_c ( T &rString, int nC } } -template <typename T > static inline void lcl_r1c1_append_r ( T &rString, int nRow, bool bIsAbs, +template <typename T > static inline void lcl_r1c1_append_r ( T &rString, sal_Int32 nRow, bool bIsAbs, const ScAddress::Details& rDetails ) { rString.append("R"); |