summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-06-21 03:56:25 +0200
committerMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-06-21 04:21:41 +0200
commit374160d659c9790f24165e62dd89128fa5f7295e (patch)
tree40ff741ed031fea5f4400d8ef0a5bce52070898c /chart2
parent7fd1fd1dead9799e50641bc920b5bcbe409d330f (diff)
volatile does not make any sense here
Change-Id: I337d845e05007efb29f1c1fa39cdcc046b156281
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/controller/main/ChartController.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/chart2/source/controller/main/ChartController.hxx b/chart2/source/controller/main/ChartController.hxx
index 6d673fa229e7..40cae9c59375 100644
--- a/chart2/source/controller/main/ChartController.hxx
+++ b/chart2/source/controller/main/ChartController.hxx
@@ -443,7 +443,7 @@ private:
void acquire();
void release();
private:
- sal_Int32 volatile m_nRefCount;
+ sal_Int32 m_nRefCount;
};
class TheModel : public RefCountable
{
@@ -466,7 +466,7 @@ private:
//the ownership between model and controller is not clear at first
//each controller might consider himself as owner of the model first
- bool volatile m_bOwnership;
+ bool m_bOwnership;
};
class TheModelRef
{
@@ -487,8 +487,8 @@ private:
mutable ::apphelper::LifeTimeManager m_aLifeTimeManager;
mutable ::osl::Mutex m_aControllerMutex;
- bool volatile m_bSuspended;
- bool volatile m_bCanClose;
+ bool m_bSuspended;
+ bool m_bCanClose;
::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext> m_xCC;
@@ -509,10 +509,10 @@ private:
SdrDragMode m_eDragMode;
Timer m_aDoubleClickTimer;
- bool volatile m_bWaitingForDoubleClick;
- bool volatile m_bWaitingForMouseUp;
+ bool m_bWaitingForDoubleClick;
+ bool m_bWaitingForMouseUp;
- bool volatile m_bConnectingToView;
+ bool m_bConnectingToView;
::com::sun::star::uno::Reference< ::com::sun::star::document::XUndoManager > m_xUndoManager;
::std::auto_ptr< UndoGuard > m_pTextActionUndoGuard;