diff options
author | Michael Stahl <mst@openoffice.org> | 2010-10-26 17:01:02 +0200 |
---|---|---|
committer | Michael Stahl <mst@openoffice.org> | 2010-10-26 17:01:02 +0200 |
commit | cf387cd5b67e7e2341ddb6427e908aa5d6cadc84 (patch) | |
tree | 93418ce526994912c5bfa26cf31e5363cbb63eb7 /configmgr/source/components.hxx | |
parent | c97ef93a330df8ccdcf72f79ae9f78f4d2ca693a (diff) | |
parent | 8d22455d3e7c7e8e25bcb8724754fc764f0e713c (diff) |
merge DEV300_m90
Diffstat (limited to 'configmgr/source/components.hxx')
-rw-r--r-- | configmgr/source/components.hxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configmgr/source/components.hxx b/configmgr/source/components.hxx index 4fc47f791821..1c735efca6ba 100644 --- a/configmgr/source/components.hxx +++ b/configmgr/source/components.hxx @@ -94,6 +94,11 @@ public: void writeModifications(); + void flushModifications(); + // must be called with configmgr::lock unaquired; must be called before + // shutdown if writeModifications has ever been called (probably + // indirectly, via removeExtensionXcuFile) + void insertExtensionXcsFile(bool shared, rtl::OUString const & fileUri); void insertExtensionXcuFile( @@ -160,11 +165,14 @@ private: com::sun::star::beans::XPropertySet > > ExternalServices; + class WriteThread; + com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > context_; Data data_; WeakRootSet roots_; ExternalServices externalServices_; + rtl::Reference< WriteThread > writeThread_; }; } |