summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/stdobj.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/basic/source/runtime/stdobj.cxx b/basic/source/runtime/stdobj.cxx
index e19168c501ee..b8deec8a3f69 100644
--- a/basic/source/runtime/stdobj.cxx
+++ b/basic/source/runtime/stdobj.cxx
@@ -714,12 +714,12 @@ SbiStdObject::SbiStdObject( const OUString& r, StarBASIC* pb ) : SbxObject( r )
// do we have to initialize the hashcodes?
Methods* p = aMethods;
if( !p->nHash )
- while( p->nArgs != -1 )
- {
- OUString aName_ = OUString::createFromAscii( p->pName );
- p->nHash = SbxVariable::MakeHashCode( aName_ );
- p += ( p->nArgs & _ARGSMASK ) + 1;
- }
+ while( p->nArgs != -1 )
+ {
+ OUString aName_ = OUString::createFromAscii( p->pName );
+ p->nHash = SbxVariable::MakeHashCode( aName_ );
+ p += ( p->nArgs & _ARGSMASK ) + 1;
+ }
// #i92642: Remove default properties
Remove( OUString("Name"), SbxCLASS_DONTCARE );