summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-10-07 22:27:53 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-10-09 16:34:04 -0400
commit70ac6e7997a93631ee02a11b689529da21f3a6ab (patch)
tree8923d909a1969d79d6a080db3ed96ae9819d7eae /chart2
parentfd9151e1fe24c0f3ade2cf7a13e169f2601e65da (diff)
Make this data member const, as it never gets modified once constructed.
Change-Id: Ic01fd0591bbb524b4a6a0ec1dfe448e33f4d6b18
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/view/inc/PlotterBase.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/view/inc/PlotterBase.hxx b/chart2/source/view/inc/PlotterBase.hxx
index 4cc8b6cc7369..4395c78a75b2 100644
--- a/chart2/source/view/inc/PlotterBase.hxx
+++ b/chart2/source/view/inc/PlotterBase.hxx
@@ -82,7 +82,7 @@ protected: //member
AbstractShapeFactory* m_pShapeFactory;
OUString m_aCID;
- sal_Int32 m_nDimension;
+ const sal_Int32 m_nDimension;
// needs to be created and deleted by the derived class
PlottingPositionHelper* m_pPosHelper;
};