summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/cellsuno.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-07-23 19:34:52 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-07-23 19:34:52 +0200
commit5a639557ae6e0e752e68de8e831fef3166c80a3b (patch)
tree57ea885af94800d860b5ea882835e02de14477e3 /sc/source/ui/unoobj/cellsuno.cxx
parent593580f2e5ce4f3c2d234b5ccb5a9371f5424e63 (diff)
-Werror=unused-parameter
...and no need for ScDocFunc::UnmergeCells to be virtual---there are no overrides. Change-Id: Ifc8083926d7b5cb22bb3a28e6b2cc29658d07ebf
Diffstat (limited to 'sc/source/ui/unoobj/cellsuno.cxx')
-rw-r--r--sc/source/ui/unoobj/cellsuno.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx
index 478194108ef1..b880f232685c 100644
--- a/sc/source/ui/unoobj/cellsuno.cxx
+++ b/sc/source/ui/unoobj/cellsuno.cxx
@@ -5424,7 +5424,7 @@ void SAL_CALL ScCellRangeObj::merge( sal_Bool bMerge ) throw(uno::RuntimeExcepti
if ( bMerge )
pDocSh->GetDocFunc().MergeCells( aMergeOption, false, true, true );
else
- pDocSh->GetDocFunc().UnmergeCells( aMergeOption, true, true );
+ pDocSh->GetDocFunc().UnmergeCells( aMergeOption, true );
//! Fehler abfangen?
}