summaryrefslogtreecommitdiff
path: root/configmgr/source/rootaccess.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/rootaccess.hxx')
-rw-r--r--configmgr/source/rootaccess.hxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/configmgr/source/rootaccess.hxx b/configmgr/source/rootaccess.hxx
index c1751210c50c..1290519b5d99 100644
--- a/configmgr/source/rootaccess.hxx
+++ b/configmgr/source/rootaccess.hxx
@@ -86,6 +86,8 @@ public:
bool isUpdate() const;
+ void setAlive(bool b);
+
protected:
virtual rtl::OUString SAL_CALL getImplementationName()
@@ -151,14 +153,16 @@ private:
rtl::OUString pathRepresentation_;
rtl::OUString locale_;
- bool update_;
Path path_;
rtl::Reference< Node > node_;
rtl::OUString name_;
- bool finalized_;
ChangesListeners changesListeners_;
boost::shared_ptr<osl::Mutex> lock_;
+
+ bool update_:1;
+ bool finalized_:1;
+ bool alive_:1;
};
}