summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2011-10-04 20:38:45 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2011-10-04 20:38:45 +0200
commit5b9801b50e1dbd634d9a081c2f278c27fce296e7 (patch)
tree0b16de4ec93e94da019324d7fb9c62b3b9587ff6
parentmac tinderbox can't deal with rtl::OStringBuffer::append(sal_Int16) (diff)
downloadcore-5b9801b50e1dbd634d9a081c2f278c27fce296e7.tar.gz
core-5b9801b50e1dbd634d9a081c2f278c27fce296e7.zip
SCCOl is 16 bit too
-rw-r--r--sc/qa/unit/helper/csv_handler.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/helper/csv_handler.hxx b/sc/qa/unit/helper/csv_handler.hxx
index da1878754f2e..8b525d496666 100644
--- a/sc/qa/unit/helper/csv_handler.hxx
+++ b/sc/qa/unit/helper/csv_handler.hxx
@@ -57,7 +57,7 @@ rtl::OString createErrorMessage(SCCOL nCol, SCROW nRow, SCTAB nTab)
rtl::OStringBuffer aString("Error in Table: ");
aString.append(static_cast<sal_Int32>(nTab));
aString.append(" Column: ");
- aString.append(nCol);
+ aString.append(static_cast<sal_Int32>(nCol));
aString.append(" Row: ");
aString.append(nRow);
return aString.makeStringAndClear();