diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-11-11 07:46:02 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-11-11 07:46:02 +0000 |
commit | b85a1430536d63d582a67faa2cb37cb3a7e2d2de (patch) | |
tree | 12afcfec315abdf346ea4aeb019dde038214af6c /svtools/source | |
parent | 427a350da68520f7e88407169d9f02c3731be216 (diff) |
INTEGRATION: CWS perform06 (1.9.58); FILE MERGED
2005/10/25 08:03:53 as 1.9.58.1: #i56589# hold config items alive till office die
Diffstat (limited to 'svtools/source')
-rw-r--r-- | svtools/source/config/accessibilityoptions.cxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/svtools/source/config/accessibilityoptions.cxx b/svtools/source/config/accessibilityoptions.cxx index 31090f4095db..6700b5b41712 100644 --- a/svtools/source/config/accessibilityoptions.cxx +++ b/svtools/source/config/accessibilityoptions.cxx @@ -4,9 +4,9 @@ * * $RCSfile: accessibilityoptions.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: rt $ $Date: 2005-09-08 14:34:05 $ + * last change: $Author: rt $ $Date: 2005-11-11 08:46:02 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -62,6 +62,8 @@ #include <rtl/instance.hxx> #endif +#include <itemholder2.hxx> + using namespace utl; using namespace rtl; using namespace com::sun::star::uno; @@ -340,7 +342,10 @@ SvtAccessibilityOptions::SvtAccessibilityOptions() { ::osl::MutexGuard aGuard( SingletonMutex::get() ); if(!sm_pSingleImplConfig) + { sm_pSingleImplConfig = new SvtAccessibilityOptions_Impl; + ItemHolder2::holdConfigItem(E_ACCESSIBILITYOPTIONS); + } ++sm_nAccessibilityRefCount; } StartListening( *sm_pSingleImplConfig, TRUE ); |