summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-06 14:20:04 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-06 14:20:04 +0200
commit165b087b19c644ad872dcaf84b1ca6b3dfedda68 (patch)
tree8c3571cd3830cdcb8b0eac780f2ad3959e7ce3c4 /sfx2
parentb1ee1925ff1bbe502d9a708a98e025bb50a17c90 (diff)
Avoid reserved identifier
Change-Id: Ica4dc147a49525f0ec65241c2a9f1d3eb75b7285
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/appl/lnkbase2.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sfx2/source/appl/lnkbase2.cxx b/sfx2/source/appl/lnkbase2.cxx
index ea424ae9cfe7..6f869467ab05 100644
--- a/sfx2/source/appl/lnkbase2.cxx
+++ b/sfx2/source/appl/lnkbase2.cxx
@@ -282,7 +282,7 @@ void SvBaseLink::SetLinkSourceName( const OUString & rLnkNm )
aLinkName = rLnkNm;
// New Connection
- _GetRealObject();
+ GetRealObject_();
ReleaseRef(); // should be superfluous
}
@@ -296,7 +296,7 @@ void SvBaseLink::SetUpdateMode( SfxLinkUpdateMode nMode )
Disconnect();
pImplData->ClientType.nUpdateMode = nMode;
- _GetRealObject();
+ GetRealObject_();
ReleaseRef();
}
}
@@ -318,7 +318,7 @@ bool SvBaseLink::Update()
AddNextRef();
Disconnect();
- _GetRealObject();
+ GetRealObject_();
ReleaseRef();
if( xObj.Is() )
{
@@ -362,7 +362,7 @@ SfxLinkUpdateMode SvBaseLink::GetUpdateMode() const
}
-void SvBaseLink::_GetRealObject( bool bConnect)
+void SvBaseLink::GetRealObject_( bool bConnect)
{
if( !pImpl->m_pLinkMgr )
return;
@@ -455,7 +455,7 @@ void SvBaseLink::Edit( vcl::Window* pParent, const Link<SvBaseLink&,void>& rEndE
pImpl->m_aEndEditLink = rEndEditHdl;
pImpl->m_bIsConnect = xObj.Is();
if( !pImpl->m_bIsConnect )
- _GetRealObject( xObj.Is() );
+ GetRealObject_( xObj.Is() );
bool bAsync = false;
Link<const OUString&, void> aLink = LINK( this, SvBaseLink, EndEditHdl );