summaryrefslogtreecommitdiff
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
parentb1ee1925ff1bbe502d9a708a98e025bb50a17c90 (diff)
Avoid reserved identifier
Change-Id: Ica4dc147a49525f0ec65241c2a9f1d3eb75b7285
-rw-r--r--include/sfx2/lnkbase.hxx4
-rw-r--r--sfx2/source/appl/lnkbase2.cxx10
-rw-r--r--sw/source/core/docnode/swbaslnk.cxx2
3 files changed, 8 insertions, 8 deletions
diff --git a/include/sfx2/lnkbase.hxx b/include/sfx2/lnkbase.hxx
index 2a8bb226be8d..9a98ddc6b837 100644
--- a/include/sfx2/lnkbase.hxx
+++ b/include/sfx2/lnkbase.hxx
@@ -99,12 +99,12 @@ protected:
SvBaseLink( SfxLinkUpdateMode nLinkType, SotClipboardFormatId nContentType = SotClipboardFormatId::STRING );
virtual ~SvBaseLink();
- void _GetRealObject( bool bConnect = true );
+ void GetRealObject_( bool bConnect = true );
SvLinkSource* GetRealObject()
{
if( !xObj.Is() )
- _GetRealObject();
+ GetRealObject_();
return xObj;
}
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 );
diff --git a/sw/source/core/docnode/swbaslnk.cxx b/sw/source/core/docnode/swbaslnk.cxx
index 8620fce6a465..fbe68e41ea15 100644
--- a/sw/source/core/docnode/swbaslnk.cxx
+++ b/sw/source/core/docnode/swbaslnk.cxx
@@ -376,7 +376,7 @@ bool SwBaseLink::SwapIn( bool bWaitForData, bool bNativFormat )
if( !GetObj() && ( bNativFormat || ( !IsSynchron() && bWaitForData ) ))
{
AddNextRef();
- _GetRealObject();
+ GetRealObject_();
ReleaseRef();
}