diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2003-10-06 12:04:23 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2003-10-06 12:04:23 +0000 |
commit | c76ccda011a3376b395c6b0597d99cbcbb5cade7 (patch) | |
tree | 27fb5ab9fd41cb7caa705fb97fa2d9e9364b498a /stoc | |
parent | 3dcc4a9be51fbca2d91808d81fbae68ab7bc4685 (diff) |
INTEGRATION: CWS unopkg (1.13.70); FILE MERGED
2003/09/23 14:10:35 dbo 1.13.70.1: #112265# missing increment
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/source/tdmanager/tdmgr.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/stoc/source/tdmanager/tdmgr.cxx b/stoc/source/tdmanager/tdmgr.cxx index a929fbc4d848..91106d504c47 100644 --- a/stoc/source/tdmanager/tdmgr.cxx +++ b/stoc/source/tdmanager/tdmgr.cxx @@ -2,9 +2,9 @@ * * $RCSfile: tdmgr.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: kso $ $Date: 2002-11-11 08:33:38 $ + * last change: $Author: vg $ $Date: 2003-10-06 13:04:23 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -129,7 +129,7 @@ static const sal_Int32 CACHE_SIZE = 512; // exported via tdmgr_common.hxx rtl_StandardModuleCount g_moduleCount = MODULE_COUNT_INIT; -static Sequence< OUString > tdmgr_getSupportedServiceNames() +static Sequence< OUString > SAL_CALL tdmgr_getSupportedServiceNames() { static Sequence < OUString > *pNames = 0; if( ! pNames ) @@ -145,7 +145,7 @@ static Sequence< OUString > tdmgr_getSupportedServiceNames() return *pNames; } -static OUString tdmgr_getImplementationName() +static OUString SAL_CALL tdmgr_getImplementationName() { static OUString *pImplName = 0; if( ! pImplName ) @@ -330,7 +330,7 @@ Any EnumerationImpl::nextElement() OUString( RTL_CONSTASCII_USTRINGPARAM("there is no further element!") ), (XWeak *)(OWeakObject *)this ); } - return makeAny( _pMgr->_aProviders[_nPos] ); + return makeAny( _pMgr->_aProviders[_nPos++] ); } //################################################################################################## |