summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-03-20 21:26:04 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-03-22 21:49:19 -0400
commit7d1d5f290d42024c4a0c2dd03b722942f7142971 (patch)
tree794ab52e46bea0b964944903d3feda46c7345baa /sc/source/ui/unoobj
parent2ce72093cdc68e60fb06ddd4358e0bc7fc8c63a9 (diff)
Remove unused method parameter.
Change-Id: Ib297f38ab5428f4251d5f482c87bcac926250aa9
Diffstat (limited to 'sc/source/ui/unoobj')
-rw-r--r--sc/source/ui/unoobj/cellsuno.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx
index 450c6816e037..298b61a9055f 100644
--- a/sc/source/ui/unoobj/cellsuno.cxx
+++ b/sc/source/ui/unoobj/cellsuno.cxx
@@ -6312,8 +6312,8 @@ void ScCellObj::SetString_Impl(const String& rString, sal_Bool bInterpret, sal_B
if ( pDocSh )
{
// GRAM_PODF_A1 for API compatibility.
- (void)pDocSh->GetDocFunc().SetCellText( aCellPos, rString, bInterpret, bEnglish,
- sal_True, EMPTY_STRING, formula::FormulaGrammar::GRAM_PODF_A1 );
+ (void)pDocSh->GetDocFunc().SetCellText(
+ aCellPos, rString, bInterpret, bEnglish, true, formula::FormulaGrammar::GRAM_PODF_A1 );
}
}