Kaydet (Commit) 85f7ed1c authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Use an osl::Mutex directly

Change-Id: I2e2a7c380ca593ad957c3b0085d01971c843f172
üst 8781cdcc
...@@ -22,7 +22,6 @@ ...@@ -22,7 +22,6 @@
#include <loadenv/loadenvexception.hxx> #include <loadenv/loadenvexception.hxx>
#include <loadenv/actionlockguard.hxx> #include <loadenv/actionlockguard.hxx>
#include <threadhelp/threadhelpbase.hxx>
#include <com/sun/star/lang/IllegalArgumentException.hpp> #include <com/sun/star/lang/IllegalArgumentException.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp>
...@@ -52,7 +51,7 @@ class QuietInteraction; ...@@ -52,7 +51,7 @@ class QuietInteraction;
@author as96863 @author as96863
*/ */
class LoadEnv : private ThreadHelpBase class LoadEnv
{ {
public: public:
...@@ -106,6 +105,7 @@ public: ...@@ -106,6 +105,7 @@ public:
}; };
private: private:
mutable osl::Mutex m_mutex;
/** @short reference to an uno service manager, which must be used /** @short reference to an uno service manager, which must be used
to created on needed services on demand. to created on needed services on demand.
......
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