Kaydet (Commit) 40c34e62 authored tarafından Matteo Casalin's avatar Matteo Casalin

Fix indentation

Change-Id: I5cff1cda3c6882e751b88a4a4d1aacbec8942578
üst f7a2795c
...@@ -714,12 +714,12 @@ SbiStdObject::SbiStdObject( const OUString& r, StarBASIC* pb ) : SbxObject( r ) ...@@ -714,12 +714,12 @@ SbiStdObject::SbiStdObject( const OUString& r, StarBASIC* pb ) : SbxObject( r )
// do we have to initialize the hashcodes? // do we have to initialize the hashcodes?
Methods* p = aMethods; Methods* p = aMethods;
if( !p->nHash ) if( !p->nHash )
while( p->nArgs != -1 ) while( p->nArgs != -1 )
{ {
OUString aName_ = OUString::createFromAscii( p->pName ); OUString aName_ = OUString::createFromAscii( p->pName );
p->nHash = SbxVariable::MakeHashCode( aName_ ); p->nHash = SbxVariable::MakeHashCode( aName_ );
p += ( p->nArgs & _ARGSMASK ) + 1; p += ( p->nArgs & _ARGSMASK ) + 1;
} }
// #i92642: Remove default properties // #i92642: Remove default properties
Remove( OUString("Name"), SbxCLASS_DONTCARE ); Remove( OUString("Name"), SbxCLASS_DONTCARE );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment