summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-30 09:10:34 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-01-30 09:10:34 +0000
commitb2df899dbb038acfe3c47eef303345ceaf3725b8 (patch)
treecda01c84fed276dce11f23d9630c14e196919e63
parent99674f754323ca78ac45499439b9983b31ebd444 (diff)
fix build
Change-Id: Ib2ab6140c45b858acbe0b97870d2d64c7189d875
-rw-r--r--sc/source/core/tool/address.cxx6
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");