summaryrefslogtreecommitdiff
path: root/basic/source/comp/symtbl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/comp/symtbl.cxx')
-rw-r--r--basic/source/comp/symtbl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/comp/symtbl.cxx b/basic/source/comp/symtbl.cxx
index f7e6016aa6b1..578d035042fd 100644
--- a/basic/source/comp/symtbl.cxx
+++ b/basic/source/comp/symtbl.cxx
@@ -160,9 +160,9 @@ void SbiSymPool::Add( SbiSymDef* pDef )
OUString aName( pDef->aName );
if( pDef->IsStatic() )
{
- aName = pParser->aGblStrings.Find( nProcId );
- aName += ":";
- aName += pDef->aName;
+ aName = pParser->aGblStrings.Find( nProcId )
+ + ":"
+ + pDef->aName;
}
pDef->nId = rStrings.Add( aName );
}