summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-27 11:40:22 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-27 11:40:22 +0200
commit668408fa1c69eaf0f0a37f24e2ec8b4a38fe3db7 (patch)
tree1979b22faf086895588d5c7a03ad92c52f55e263 /framework
parent66854d697f973f36e1b878080999901e0936dae6 (diff)
Fix accidental mis-uses of VclPtr address-of operator
Change-Id: I3a82423378d3198a25f90ddfbf42af55d85c96fb
Diffstat (limited to 'framework')
-rw-r--r--framework/source/classes/fwktabwindow.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/source/classes/fwktabwindow.cxx b/framework/source/classes/fwktabwindow.cxx
index 9e16a6fc3324..e6cc7e3a03df 100644
--- a/framework/source/classes/fwktabwindow.cxx
+++ b/framework/source/classes/fwktabwindow.cxx
@@ -338,7 +338,7 @@ FwkTabPage* FwkTabWindow::AddTabPage( sal_Int32 nIndex, const uno::Sequence< bea
void FwkTabWindow::ActivatePage( sal_Int32 nIndex )
{
m_aTabCtrl->SetCurPageId( static_cast< sal_uInt16 >( nIndex ) );
- ActivatePageHdl( &m_aTabCtrl );
+ ActivatePageHdl( m_aTabCtrl.get() );
}
void FwkTabWindow::RemovePage( sal_Int32 nIndex )