summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-05 23:12:46 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-06 08:31:46 +0200
commit9351353b63886f494782f28f5400f5d71d22bcbd (patch)
treeb0d171b474b495faada44ff516b9285a1a114648 /include
parent8d1bc5056e0a3f647bd9044749d6a7c603029075 (diff)
Avoid reserved identifiers
Change-Id: I18ebddef41955948fd4528ae74f4fe9c7439d53b
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/dispatch.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/sfx2/dispatch.hxx b/include/sfx2/dispatch.hxx
index 5ce479e2bd0a..023486854201 100644
--- a/include/sfx2/dispatch.hxx
+++ b/include/sfx2/dispatch.hxx
@@ -91,7 +91,7 @@ friend class SfxViewFrame;
DECL_DLLPRIVATE_LINK_TYPED( PostMsgHandler, SfxRequest *, void );
SAL_DLLPRIVATE void Call_Impl( SfxShell& rShell, const SfxSlot &rSlot, SfxRequest &rReq, bool bRecord );
- SAL_DLLPRIVATE void _Update_Impl( bool,bool,bool,SfxWorkWindow*);
+ SAL_DLLPRIVATE void Update_Impl_( bool,bool,bool,SfxWorkWindow*);
protected:
friend class SfxBindings;
@@ -99,10 +99,10 @@ friend class SfxStateCache;
friend class SfxPopupMenuManager;
friend class SfxHelp;
- bool _FindServer( sal_uInt16 nId, SfxSlotServer &rServer, bool bModal );
- bool _FillState( const SfxSlotServer &rServer,
+ bool FindServer_( sal_uInt16 nId, SfxSlotServer &rServer, bool bModal );
+ bool FillState_( const SfxSlotServer &rServer,
SfxItemSet &rState, const SfxSlot *pRealSlot );
- void _Execute( SfxShell &rShell, const SfxSlot &rSlot,
+ void Execute_( SfxShell &rShell, const SfxSlot &rSlot,
SfxRequest &rReq,
SfxCallMode eCall = SfxCallMode::RECORD);