diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-05-12 08:51:51 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-05-12 09:03:00 +0200 |
commit | 30d6bf6f25c1531e10454739b791ee572b59b251 (patch) | |
tree | 94796355493587fcceb4b7ea7dd8153f29d6a699 /chart2 | |
parent | a2576b2d43684c54a9270ce93b5a721296faf8da (diff) |
volatile does not make any sense here
Change-Id: I895f6d04bbd5bd1829ec72b2051e640cbc153b26
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/inc/ChartView.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chart2/inc/ChartView.hxx b/chart2/inc/ChartView.hxx index bc458a9785fd..0ba3bf86f132 100644 --- a/chart2/inc/ChartView.hxx +++ b/chart2/inc/ChartView.hxx @@ -252,10 +252,10 @@ private: //member ::cppu::OMultiTypeInterfaceContainerHelper m_aListenerContainer; - bool volatile m_bViewDirty; //states whether the view needs to be rebuild - bool volatile m_bInViewUpdate; - bool volatile m_bViewUpdatePending; - bool volatile m_bRefreshAddIn; + bool m_bViewDirty; //states whether the view needs to be rebuild + bool m_bInViewUpdate; + bool m_bViewUpdatePending; + bool m_bRefreshAddIn; //better performance for big data ::com::sun::star::awt::Size m_aPageResolution; |