From 40c34e62624f89b6e994e5e202c3bcf250544d86 Mon Sep 17 00:00:00 2001 From: Matteo Casalin Date: Sun, 19 Jul 2015 12:24:28 +0200 Subject: Fix indentation Change-Id: I5cff1cda3c6882e751b88a4a4d1aacbec8942578 --- basic/source/runtime/stdobj.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'basic') 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 ); -- cgit