diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2003-06-12 08:48:10 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2003-06-12 08:48:10 +0000 |
commit | 8092fc51bc8ff29750cb5fb7d5cef05129aee666 (patch) | |
tree | ca409fa75770433b531e1ef601c9850af669a763 /eventattacher/source | |
parent | 12f581b13d8f1f288b6c3aed98635086b3a89671 (diff) |
INTEGRATION: CWS mh11rc (1.3.46); FILE MERGED
2003/06/06 11:13:42 mh 1.3.46.1: join: from cws_srx644_ooo11beta2
Diffstat (limited to 'eventattacher/source')
-rw-r--r-- | eventattacher/source/eventattacher.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/eventattacher/source/eventattacher.cxx b/eventattacher/source/eventattacher.cxx index 6cfcc3b6546f..eba4957713cd 100644 --- a/eventattacher/source/eventattacher.cxx +++ b/eventattacher/source/eventattacher.cxx @@ -2,9 +2,9 @@ * * $RCSfile: eventattacher.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: hr $ $Date: 2001-09-11 15:43:17 $ + * last change: $Author: vg $ $Date: 2003-06-12 09:48:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -925,10 +925,10 @@ sal_Bool SAL_CALL component_writeInfo( reinterpret_cast< XRegistryKey * >( pRegistryKey )->createKey( OUString( RTL_CONSTASCII_USTRINGPARAM( "/" IMPLNAME "/UNO/SERVICES") ))); - Sequence< OUString > & rSNL = - ::comp_EventAttacher::EventAttacherImpl::getSupportedServiceNames_Static(); - const OUString * pArray = rSNL.getConstArray(); - for ( sal_Int32 nPos = rSNL.getLength(); nPos--; ) + Sequence< OUString > aSNL + ( ::comp_EventAttacher::EventAttacherImpl::getSupportedServiceNames_Static() ); + const OUString * pArray = aSNL.getConstArray(); + for ( sal_Int32 nPos = aSNL.getLength(); nPos--; ) xNewKey->createKey( pArray[nPos] ); return sal_True; |