[Libreoffice-commits] .: sc/qa

Markus Mohrhard mmohrhard at kemper.freedesktop.org
Tue Oct 4 11:18:44 PDT 2011


 sc/qa/unit/helper/csv_handler.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e9e67382f6d7a26c9b059416630caf0a84530370
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date:   Tue Oct 4 20:18:40 2011 +0200

    mac tinderbox can't deal with rtl::OStringBuffer::append(sal_Int16)

diff --git a/sc/qa/unit/helper/csv_handler.hxx b/sc/qa/unit/helper/csv_handler.hxx
index c3e9313..da18787 100644
--- a/sc/qa/unit/helper/csv_handler.hxx
+++ b/sc/qa/unit/helper/csv_handler.hxx
@@ -55,7 +55,7 @@ rtl::OUString getConditionalFormatString(ScDocument* pDoc, SCCOL nCol, SCROW nRo
 rtl::OString createErrorMessage(SCCOL nCol, SCROW nRow, SCTAB nTab)
 {
     rtl::OStringBuffer aString("Error in Table: ");
-    aString.append(nTab);
+    aString.append(static_cast<sal_Int32>(nTab));
     aString.append(" Column: ");
     aString.append(nCol);
     aString.append(" Row: ");


More information about the Libreoffice-commits mailing list