diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-04-10 14:33:27 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-04-10 14:34:16 +0100 |
commit | 14168dfb75d5846ded49e15ab394b9934d9033df (patch) | |
tree | e03421dacaf3128d866e04396fc19570ea11afa8 /svtools | |
parent | 4804ed902a00cf72f86caa75cb6b6a04ffd72493 (diff) |
vcl cleanup post re-base.
Change-Id: I2500a2079cd029505f404f34c9b3d9ec1961afbd
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/contnr/imivctl1.cxx | 4 | ||||
-rw-r--r-- | svtools/source/control/valueset.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/contnr/imivctl1.cxx b/svtools/source/contnr/imivctl1.cxx index 2216348cb599..2ed5bf777c91 100644 --- a/svtools/source/contnr/imivctl1.cxx +++ b/svtools/source/contnr/imivctl1.cxx @@ -2084,8 +2084,8 @@ long SvxIconChoiceCtrl_Impl::CalcBoundingHeight( SvxIconChoiceCtrlEntry* pEntry if( nHeight > nMaxBoundHeight ) { const_cast<SvxIconChoiceCtrl_Impl*>(this)->nMaxBoundHeight = nHeight; - const_cast<SvxIconChoiceCtrl_Impl*>(this)->aHorSBar.SetLineSize( GetScrollBarLineSize() ); - const_cast<SvxIconChoiceCtrl_Impl*>(this)->aVerSBar.SetLineSize( GetScrollBarLineSize() ); + const_cast<SvxIconChoiceCtrl_Impl*>(this)->aHorSBar->SetLineSize( GetScrollBarLineSize() ); + const_cast<SvxIconChoiceCtrl_Impl*>(this)->aVerSBar->SetLineSize( GetScrollBarLineSize() ); } return nHeight; } diff --git a/svtools/source/control/valueset.cxx b/svtools/source/control/valueset.cxx index 98a0b95a495e..844585bcbded 100644 --- a/svtools/source/control/valueset.cxx +++ b/svtools/source/control/valueset.cxx @@ -135,7 +135,7 @@ void ValueSet::dispose() xComponent->dispose(); ImplDeleteItems(); - mpScrollBar.disposeAndClear(); + mxScrollBar.disposeAndClear(); Control::dispose(); } |