summaryrefslogtreecommitdiff
path: root/basic/source
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2015-07-19 12:24:28 +0200
committerMatteo Casalin <matteo.casalin@yahoo.com>2015-07-19 17:12:32 +0200
commit40c34e62624f89b6e994e5e202c3bcf250544d86 (patch)
tree1edbc4fec5b5d1395dbb8d3682610e5ecd9da60d /basic/source
parentf7a2795c881c2eba95aa09f21881f842281ae819 (diff)
Fix indentation
Change-Id: I5cff1cda3c6882e751b88a4a4d1aacbec8942578
Diffstat (limited to 'basic/source')
-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 );