diff options
author | Joachim Lingner <jl@openoffice.org> | 2010-07-02 15:07:01 +0200 |
---|---|---|
committer | Joachim Lingner <jl@openoffice.org> | 2010-07-02 15:07:01 +0200 |
commit | cedcbf9c869bd603251a4f5eaa9331ff3e66d766 (patch) | |
tree | d70d962c53e89e820993365cf4bd8f63301a6b68 | |
parent | 88d0d8d5ccf1999ec7dc2f464b1e3a60f1b88cc5 (diff) | |
parent | d10b4bd6d31b59033804783def3a79652c90792c (diff) |
jl154 merging heads
-rw-r--r-- | desktop/source/deployment/misc/dp_misc.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/desktop/source/deployment/misc/dp_misc.cxx b/desktop/source/deployment/misc/dp_misc.cxx index fe3490903043..cfdac4068130 100644 --- a/desktop/source/deployment/misc/dp_misc.cxx +++ b/desktop/source/deployment/misc/dp_misc.cxx @@ -589,6 +589,11 @@ void TRACE(::rtl::OString const & sText) void syncRepositories(Reference<ucb::XCommandEnvironment> const & xCmdEnv) { + OUString sDisable; + ::rtl::Bootstrap::get( OUSTR( "DISABLE_EXTENSION_SYNCHRONIZATION" ), sDisable, OUString() ); + if (sDisable.getLength() > 0) + return; + Reference<deployment::XExtensionManager> xExtensionManager; //synchronize shared before bundled otherewise there are //more revoke and registration calls. |