summaryrefslogtreecommitdiff
path: root/scripting/source/basprov
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 09:18:36 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 09:18:36 +0000
commit388826382f3604af6c29e98d48585f006bd972eb (patch)
tree8a411b3244fa6784cbaaf1cfa235dd409c84cc82 /scripting/source/basprov
parent671d22add5821401360136447e2a640664865cee (diff)
INTEGRATION: CWS warnings01 (1.11.14); FILE MERGED
2005/12/22 14:40:47 ab 1.11.14.1: #i53898# Removed warnings for unxlngi6, unxlngi6.pro
Diffstat (limited to 'scripting/source/basprov')
-rw-r--r--scripting/source/basprov/basscript.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripting/source/basprov/basscript.cxx b/scripting/source/basprov/basscript.cxx
index a837ef737f26..ec0bf0f5f751 100644
--- a/scripting/source/basprov/basscript.cxx
+++ b/scripting/source/basprov/basscript.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: basscript.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 02:23:57 $
+ * last change: $Author: hr $ $Date: 2006-06-19 10:18:36 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -170,13 +170,13 @@ namespace basprov
// get output parameters
if ( xSbxParams.Is() )
{
- SbxInfo* pInfo = m_xMethod->GetInfo();
- if ( pInfo )
+ SbxInfo* pInfo_ = m_xMethod->GetInfo();
+ if ( pInfo_ )
{
OutParamMap aOutParamMap;
for ( USHORT n = 1, nCount = xSbxParams->Count(); n < nCount; ++n )
{
- const SbxParamInfo* pParamInfo = pInfo->GetParam( n );
+ const SbxParamInfo* pParamInfo = pInfo_->GetParam( n );
if ( pParamInfo && ( pParamInfo->eType & SbxBYREF ) != 0 )
{
SbxVariable* pVar = xSbxParams->Get( n );