summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-02-15 20:54:29 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-02-15 21:00:57 +0100
commitcc9cd7af3beb13eede23c6c60506c6e8c329e29d (patch)
tree3296d2d70baa50ffe7c560e990795454ef518673 /sc
parent22763347d8d4f02729c93ed19c2040ebebabb5f1 (diff)
coverity: initialize variable
Change-Id: Ie52aae8e56e4b420d612772f8dab1d9e7330f79a
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/column3.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/core/data/column3.cxx b/sc/source/core/data/column3.cxx
index 7976996ee5b5..d68138818934 100644
--- a/sc/source/core/data/column3.cxx
+++ b/sc/source/core/data/column3.cxx
@@ -1195,7 +1195,8 @@ bool ScColumn::SetString( SCROW nRow, SCTAB nTabP, const String& rString,
if (pParam)
aParam = *pParam;
- sal_uInt32 nIndex, nOldIndex = 0;
+ sal_uInt32 nIndex = 0;
+ sal_uInt32 nOldIndex = 0;
sal_Unicode cFirstChar;
if (!aParam.mpNumFormatter)
aParam.mpNumFormatter = pDocument->GetFormatTable();