diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-06 14:20:04 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-06 14:20:04 +0200 |
commit | 165b087b19c644ad872dcaf84b1ca6b3dfedda68 (patch) | |
tree | 8c3571cd3830cdcb8b0eac780f2ad3959e7ce3c4 /include | |
parent | b1ee1925ff1bbe502d9a708a98e025bb50a17c90 (diff) |
Avoid reserved identifier
Change-Id: Ica4dc147a49525f0ec65241c2a9f1d3eb75b7285
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/lnkbase.hxx | 4 |
1 files changed, 2 insertions, 2 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; } |