diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:00:32 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:23 +0100 |
commit | cc2606a785bf1a57623b8c58e7388112279f6b9e (patch) | |
tree | 044470773656db0b31ae1381672fa27f6811dd50 /sc/source/ui/view/colrowba.cxx | |
parent | dbac5ccaf8fd106ea424d362c0f9b32b7d043543 (diff) |
bool improvements
Change-Id: I740c0e18eefc64cb5f1da5b88ceb77289790ec37
Diffstat (limited to 'sc/source/ui/view/colrowba.cxx')
-rw-r--r-- | sc/source/ui/view/colrowba.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/view/colrowba.cxx b/sc/source/ui/view/colrowba.cxx index e207d6f945f8..137d7350cd8b 100644 --- a/sc/source/ui/view/colrowba.cxx +++ b/sc/source/ui/view/colrowba.cxx @@ -144,7 +144,7 @@ void ScColBar::SetEntrySize( SCCOLROW nPos, sal_uInt16 nNewSize ) nRangeCnt = 1; } - pViewData->GetView()->SetWidthOrHeight( sal_True, nRangeCnt, pRanges, eMode, nSizeTwips ); + pViewData->GetView()->SetWidthOrHeight( true, nRangeCnt, pRanges, eMode, nSizeTwips ); delete[] pRanges; } @@ -153,7 +153,7 @@ void ScColBar::HideEntries( SCCOLROW nStart, SCCOLROW nEnd ) SCCOLROW nRange[2]; nRange[0] = nStart; nRange[1] = nEnd; - pViewData->GetView()->SetWidthOrHeight( sal_True, 1, nRange, SC_SIZE_DIRECT, 0 ); + pViewData->GetView()->SetWidthOrHeight( true, 1, nRange, SC_SIZE_DIRECT, 0 ); } void ScColBar::SetMarking( bool bSet ) |