From 0e911397c9bbd0334345ee2f881381ec2271f6a5 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Fri, 6 Jan 2017 18:30:37 +0900 Subject: starmath: Prefix members of SmViewShell Change-Id: I256b251b6aaad487ab0afeb56ee67a4a33769e8f Reviewed-on: https://gerrit.libreoffice.org/32777 Tested-by: Jenkins Reviewed-by: Takeshi Abe --- starmath/inc/view.hxx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'starmath/inc/view.hxx') diff --git a/starmath/inc/view.hxx b/starmath/inc/view.hxx index 840b6d27428d..76ea8095ac3b 100644 --- a/starmath/inc/view.hxx +++ b/starmath/inc/view.hxx @@ -219,13 +219,13 @@ struct SmViewShell_Impl; class SmViewShell: public SfxViewShell { - std::unique_ptr pImpl; + std::unique_ptr mpImpl; - VclPtr aGraphic; - SmGraphicController aGraphicController; - OUString aStatusText; + VclPtr mpGraphic; + SmGraphicController maGraphicController; + OUString maStatusText; - bool bPasteState; + bool mbPasteState; DECL_LINK( DialogClosedHdl, sfx2::FileDialogHelper*, void ); virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override; @@ -234,7 +234,7 @@ class SmViewShell: public SfxViewShell * should be inserted into SmEditWindow or directly into the SmDocShell as done if the * visual editor was last to have focus. */ - bool bInsertIntoEditWindow; + bool mbInsertIntoEditWindow; protected: static Size GetTextLineSize(OutputDevice& rDevice, @@ -282,11 +282,11 @@ public: SmGraphicWindow& GetGraphicWindow() { - return *aGraphic.get(); + return *mpGraphic.get(); } const SmGraphicWindow& GetGraphicWindow() const { - return *aGraphic.get(); + return *mpGraphic.get(); } void SetStatusText(const OUString& rText); @@ -316,7 +316,7 @@ public: * insert for the visual editor, or the text editor. */ void SetInsertIntoEditWindow(bool bEditWindowHadFocusLast){ - bInsertIntoEditWindow = bEditWindowHadFocusLast; + mbInsertIntoEditWindow = bEditWindowHadFocusLast; } bool IsInlineEditEnabled() const; -- cgit