summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorKai Sommerfeld <kso@openoffice.org>2001-01-26 12:13:15 +0000
committerKai Sommerfeld <kso@openoffice.org>2001-01-26 12:13:15 +0000
commit086cb4bf8aa96fb40083f68b48d10a952f857956 (patch)
treed2c170966eb2afe2e46d77d5959ddccb883c433e /svtools
parent03b5ad68e2817a741b6d779c52aa755a4c991f88 (diff)
#83117# - Always write changes immediately in SvtInetOptions::Impl::setProperty.
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/config/inetoptions.cxx10
1 files changed, 8 insertions, 2 deletions
diff --git a/svtools/source/config/inetoptions.cxx b/svtools/source/config/inetoptions.cxx
index c517bd190563..01e696784648 100644
--- a/svtools/source/config/inetoptions.cxx
+++ b/svtools/source/config/inetoptions.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: inetoptions.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: sb $ $Date: 2000-12-19 10:31:02 $
+ * last change: $Author: kso $ $Date: 2001-01-26 13:13:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -387,6 +387,12 @@ void SvtInetOptions::Impl::setProperty(Index nIndex, uno::Any const & rValue,
m_aEntries[nIndex].m_aValue = rValue;
m_aEntries[nIndex].m_eState = bFlush ? Entry::KNOWN : Entry::MODIFIED;
}
+
+ /* KSO: Interim fix for #83237#. Otherwise changes will be written */
+ /* and notified to listeners listening directly at the config */
+ /* server only at application end. */
+ bFlush = true;
+
uno::Sequence< rtl::OUString > aKeys(1);
aKeys[0] = m_aEntries[nIndex].m_aName;
if (bFlush)