summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
authorHans-Joachim Lankenau <hjs@openoffice.org>2010-12-17 13:36:59 +0100
committerHans-Joachim Lankenau <hjs@openoffice.org>2010-12-17 13:36:59 +0100
commit3b4cbe251219c918a33b8375721e5a89288c6e77 (patch)
tree4195bc9f97425229f1216f8c0612654076a86d2c /basctl
parentd14d5a645ddde65ac39f0665e8dd8a95c135ceaf (diff)
parentb8c0bb8307498d9f78d14c81e4bae482ce8825b3 (diff)
CWS-TOOLING: integrate CWS mib19
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/baside2b.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx
index 782485b535a2..68cdbe9ad9ed 100644
--- a/basctl/source/basicide/baside2b.cxx
+++ b/basctl/source/basicide/baside2b.cxx
@@ -1635,9 +1635,10 @@ void __EXPORT StackWindow::UpdateCalls()
aEntry += pParam->aName;
}
aEntry += '=';
- if( pVar->GetType() & SbxARRAY )
+ SbxDataType eType = pVar->GetType();
+ if( eType & SbxARRAY )
aEntry += String( RTL_CONSTASCII_USTRINGPARAM( "..." ) );
- else
+ else if( eType != SbxOBJECT )
aEntry += pVar->GetString();
if ( nParam < ( pParams->Count() - 1 ) )
aEntry += String( RTL_CONSTASCII_USTRINGPARAM( ", " ) );