Kaydet (Commit) 7cccb79f authored tarafından Matteo Casalin's avatar Matteo Casalin

Remove leading _ from some variable names

Change-Id: I640bf41ad073fcf1d5b8fcc55c63558f208db73d
üst 03caa2f6
......@@ -1986,20 +1986,20 @@ void SdrMarkView::UnmarkAllObj(SdrPageView const * pPV)
}
}
void SdrMarkView::MarkAllObj(SdrPageView* _pPV)
void SdrMarkView::MarkAllObj(SdrPageView* pPV)
{
BrkAction();
if(!_pPV)
if(!pPV)
{
_pPV = GetSdrPageView();
pPV = GetSdrPageView();
}
// #i69171# _pPV may still be NULL if there is no SDrPageView (!), e.g. when inserting
// #i69171# pPV may still be NULL if there is no SDrPageView (!), e.g. when inserting
// other files
if(_pPV)
if(pPV)
{
const bool bMarkChg(GetMarkedObjectListWriteAccess().InsertPageView(*_pPV));
const bool bMarkChg(GetMarkedObjectListWriteAccess().InsertPageView(*pPV));
if(bMarkChg)
{
......@@ -2154,14 +2154,14 @@ void SdrMarkView::SetMoveOutside(bool bOn)
maHdlList.SetMoveOutside(bOn);
}
void SdrMarkView::SetDesignMode( bool _bOn )
void SdrMarkView::SetDesignMode( bool bOn )
{
if ( mbDesignMode != _bOn )
if ( mbDesignMode != bOn )
{
mbDesignMode = _bOn;
mbDesignMode = bOn;
SdrPageView* pPageView = GetSdrPageView();
if ( pPageView )
pPageView->SetDesignMode( _bOn );
pPageView->SetDesignMode( bOn );
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment