summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorEike Rathke [er] <eike.rathke@oracle.com>2012-12-15 00:28:26 +0100
committerEike Rathke <erack@redhat.com>2012-12-15 21:42:40 +0100
commitf28cafdc1d637ffb1409fa104e867ffcf00580f4 (patch)
treeefb3857c215e72d50436f90ff406a90d7b2755b0 /sc/source
parent9d73ad60be888fd83551367712eb9c1f12f838ce (diff)
calcishmakkica: WaE wntmsci12
Merged from Apache OO. http://svn.apache.org/viewvc?rev=1381449&view=rev Original Apache OO committer: Andrew Rist <arist@apache.org> Original Author: Eike Rathke [er] <eike.rathke@oracle.com> Original Committer: Eike Rathke [er] <eike.rathke@oracle.com> # HG changeset patch # User Eike Rathke [er] <eike.rathke@oracle.com> # Date 1297940971 -3600 # Node ID 2416febcae5c81a24b40439f09f91e40a686b911 # Parent 0d84fd3534ea7cda60f795f7dc5d99db58d8cc6e Change-Id: I46835f0cef9bf83b76e7501a5291f7724b23f871
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/core/tool/interpr1.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx
index 7d7b867d5a08..435a5093a4b1 100644
--- a/sc/source/core/tool/interpr1.cxx
+++ b/sc/source/core/tool/interpr1.cxx
@@ -6067,8 +6067,8 @@ double ScInterpreter::IterateParametersIfs( ScIterFuncIfs eFunc )
{
if (pResMat->GetDouble( nCol, nRow) == nQueryCount)
{
- aAdr.SetCol( nCol + nMainCol1);
- aAdr.SetRow( nRow + nMainRow1);
+ aAdr.SetCol( static_cast<SCCOL>(nCol) + nMainCol1);
+ aAdr.SetRow( static_cast<SCROW>(nRow) + nMainRow1);
ScBaseCell* pCell = GetCell( aAdr );
if ( HasCellValueData(pCell) )
{