diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-17 10:44:41 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-18 10:07:58 +0200 |
commit | d5cca704f55e3e02147171e645af215e4edb22d4 (patch) | |
tree | e4f6c02901b4661f17ce39627f71118dab4eee31 /sc/qa | |
parent | 766b50d25355cdb535144b88144bba51219f4214 (diff) |
sal_Bool->bool, and remove some virtual modifiers
none of these methods are being override anywhere, so remove
the virtual modifiers.
Change-Id: I84fa4211418b7eae38b60964b076ecd73013513a
Diffstat (limited to 'sc/qa')
-rw-r--r-- | sc/qa/unit/subsequent_filters-test.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/subsequent_filters-test.cxx b/sc/qa/unit/subsequent_filters-test.cxx index 142d24179878..fe765380a0b1 100644 --- a/sc/qa/unit/subsequent_filters-test.cxx +++ b/sc/qa/unit/subsequent_filters-test.cxx @@ -2402,7 +2402,7 @@ void ScFiltersTest::testOptimalHeightReset() // set optimal height for empty row 2 SCCOLROW nRowArr[2]; nRowArr[0] = nRowArr[1] = 2; - rFunc.SetWidthOrHeight( false, 1, nRowArr, nTab, SC_SIZE_OPTIMAL, 0, sal_True, sal_True ); + rFunc.SetWidthOrHeight( false, 1, nRowArr, nTab, SC_SIZE_OPTIMAL, 0, true, true ); // retrieve optimal height int nOptimalHeight = sc::TwipsToHMM( pDoc->GetRowHeight( nRowArr[0], nTab, false) ); |