summaryrefslogtreecommitdiff
path: root/chart2/source
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-09-04 09:03:42 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-09-04 09:04:18 +0200
commit2c1019739b1a15971b894b7e382de097894af47c (patch)
tree0b66ad67e96daccfe92492f45edbf2066e81819a /chart2/source
parent24d90b8aa8e49507d02aa87a0b726ec303a27518 (diff)
svx: prefix members of SdrPaintView
'mpModel=pModel' is more readable than 'pMod=pModel1'. Change-Id: I617d85e2c2d4b6b5b0d235cdd3cd9129e276b28d
Diffstat (limited to 'chart2/source')
-rw-r--r--chart2/source/controller/drawinglayer/DrawViewWrapper.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx b/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx
index d6623b994af6..da032cc4ab73 100644
--- a/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx
+++ b/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx
@@ -137,11 +137,11 @@ void DrawViewWrapper::ReInit()
if(pOutDev)
aOutputSize = pOutDev->GetOutputSize();
- bPageVisible = false;
- bPageBorderVisible = false;
- bBordVisible = false;
- bGridVisible = false;
- bHlplVisible = false;
+ mbPageVisible = false;
+ mbPageBorderVisible = false;
+ mbBordVisible = false;
+ mbGridVisible = false;
+ mbHlplVisible = false;
this->SetNoDragXorPolys(true);//for interactive 3D resize-dragging: paint only a single rectangle (not a simulated 3D object)
@@ -154,7 +154,7 @@ void DrawViewWrapper::ReInit()
DrawViewWrapper::~DrawViewWrapper()
{
- aComeBackIdle.Stop();//@todo this should be done in destructor of base class
+ maComeBackIdle.Stop();//@todo this should be done in destructor of base class
UnmarkAllObj();//necessary to avoid a paint call during the destructor hierarchy
}