Kaydet (Commit) 753eeac8 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#704575 et al. and clean-up.

Change-Id: I24b38b63d26bc2d4e1d479754120dfd5b5635737
üst 3d954575
......@@ -105,7 +105,7 @@ public:
void unbind() throw ();
bool isInTransaction() const { return inTransaction_; }
bool isInTransaction() const { return m_bInTransaction; }
void committed();
void setNode(rtl::Reference< Node > const & node);
......@@ -130,14 +130,14 @@ private:
com::sun::star::uno::Type const & aType)
throw (com::sun::star::uno::RuntimeException);
rtl::Reference< RootAccess > root_;
rtl::Reference< Access > parent_; // null if free node
OUString name_;
rtl::Reference< Node > node_;
std::auto_ptr< com::sun::star::uno::Any > changedValue_;
bool inTransaction_;
rtl::Reference< RootAccess > m_rRoot;
rtl::Reference< Access > m_rParent; // null if free node
OUString m_sName;
rtl::Reference< Node > m_rNode;
std::auto_ptr< com::sun::star::uno::Any > m_changedValue;
bool m_bInTransaction;
// to determine if a free node can be inserted underneath some root
boost::shared_ptr<osl::Mutex> lock_;
boost::shared_ptr<osl::Mutex> m_pLock;
};
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment