summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-11-15 12:35:11 +0000
committerOliver Bolte <obo@openoffice.org>2004-11-15 12:35:11 +0000
commit435badabfe9e2db1c6a974038280b8df8531d7af (patch)
tree8f68d503e3662b8c3b8b7e3cbbc2cffca25bbbec /configmgr
parentebbae93ef7abb15bd68f135a187144d270d6c007 (diff)
INTEGRATION: CWS cfglooseends (1.60.30); FILE MERGED
2004/11/08 10:49:14 jb 1.60.30.1: #i31085# Correct handling of enableAsync property
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/api2/providerimpl.cxx10
1 files changed, 2 insertions, 8 deletions
diff --git a/configmgr/source/api2/providerimpl.cxx b/configmgr/source/api2/providerimpl.cxx
index 7839b3f6c483..aee9c9348587 100644
--- a/configmgr/source/api2/providerimpl.cxx
+++ b/configmgr/source/api2/providerimpl.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: providerimpl.cxx,v $
*
- * $Revision: 1.60 $
+ * $Revision: 1.61 $
*
- * last change: $Author: hr $ $Date: 2004-06-18 15:46:38 $
+ * last change: $Author: obo $ $Date: 2004-11-15 13:35:11 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -190,7 +190,6 @@ namespace configmgr
,m_pNewProviders(NULL)
,m_aTreeManagerMutex()
,m_pTreeManager(NULL)
- ,m_bEnableAsync(true)
{
OSL_ENSURE(_xContext.is(), "OProviderImpl : NULL context !");
@@ -267,9 +266,6 @@ namespace configmgr
setTreeManager( xNewTreeManager.get() );
OSL_ASSERT( xNewTreeManager.get() );
- //Forward enableAsync setting to TreeManager now that it has been initialised
- m_pTreeManager->enableAsync(m_bEnableAsync );
-
// put out of line to get rid of the order dependency (and to have a acquired configuration)
m_pNewProviders = new configapi::ApiProviderInstances(*this);
@@ -329,9 +325,7 @@ namespace configmgr
if (_rSettings.hasAsyncSetting())
{
-
m_aDefaultOptions.enableAsync( !!_rSettings.getAsyncSetting() );
- m_bEnableAsync = _rSettings.getAsyncSetting();
}