diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-05 23:11:48 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-06 08:31:46 +0200 |
commit | c83173940a34f2d388fe4257e70048747dca6f29 (patch) | |
tree | fb8df73b18289e9c7f1d0cf4192dda27cb892ec4 | |
parent | 45adae8fd6e4a6f63220b619d16fb5bd06b82d95 (diff) |
Avoid reserved identifier
Change-Id: I2f8dc470100e91841eebbe1e3b02a3d31ab3a535
-rw-r--r-- | basic/source/classes/sbxmod.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/classes/sbxmod.cxx b/basic/source/classes/sbxmod.cxx index 628b5332cf1f..e8b54d7cf214 100644 --- a/basic/source/classes/sbxmod.cxx +++ b/basic/source/classes/sbxmod.cxx @@ -952,7 +952,7 @@ void SbModule::SetSource32( const OUString& r ) // Broadcast of a hint to all Basics -static void _SendHint( SbxObject* pObj, sal_uInt32 nId, SbMethod* p ) +static void SendHint_( SbxObject* pObj, sal_uInt32 nId, SbMethod* p ) { // Self a BASIC? if( dynamic_cast<const StarBASIC *>(pObj) != nullptr && pObj->IsBroadcaster() ) @@ -963,7 +963,7 @@ static void _SendHint( SbxObject* pObj, sal_uInt32 nId, SbMethod* p ) { SbxVariable* pVar = pObjs->Get( i ); if( dynamic_cast<const SbxObject *>(pVar) != nullptr ) - _SendHint( dynamic_cast<SbxObject*>( pVar), nId, p ); + SendHint_( dynamic_cast<SbxObject*>( pVar), nId, p ); } } @@ -971,7 +971,7 @@ static void SendHint( SbxObject* pObj, sal_uInt32 nId, SbMethod* p ) { while( pObj->GetParent() ) pObj = pObj->GetParent(); - _SendHint( pObj, nId, p ); + SendHint_( pObj, nId, p ); } // #57841 Clear Uno-Objects, which were helt in RTL functions, |