Kaydet (Commit) b2df899d authored tarafından Caolán McNamara's avatar Caolán McNamara

fix build

Change-Id: Ib2ab6140c45b858acbe0b97870d2d64c7189d875
üst 99674f75
...@@ -1710,14 +1710,14 @@ template <typename T > static inline void lcl_a1_append_c ( T &rString, int nCol ...@@ -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) ); 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 ) if ( bIsAbs )
rString.append("$"); rString.append("$");
rString.append( nRow + 1 ); 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 ) const ScAddress::Details& rDetails )
{ {
rString.append("C"); rString.append("C");
...@@ -1734,7 +1734,7 @@ template <typename T > static inline void lcl_r1c1_append_c ( T &rString, int nC ...@@ -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 ) const ScAddress::Details& rDetails )
{ {
rString.append("R"); rString.append("R");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment