diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2017-01-06 18:30:37 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2017-01-11 07:04:30 +0000 |
commit | 0e911397c9bbd0334345ee2f881381ec2271f6a5 (patch) | |
tree | 21c2f34d9fb7588b17ad4475977e5fda7a6cfa10 /starmath/inc/view.hxx | |
parent | a940c8280d26be030dd7a53cf7b4077430597e8d (diff) |
starmath: Prefix members of SmViewShell
Change-Id: I256b251b6aaad487ab0afeb56ee67a4a33769e8f
Reviewed-on: https://gerrit.libreoffice.org/32777
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'starmath/inc/view.hxx')
-rw-r--r-- | starmath/inc/view.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
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<SmViewShell_Impl> pImpl; + std::unique_ptr<SmViewShell_Impl> mpImpl; - VclPtr<SmGraphicWindow> aGraphic; - SmGraphicController aGraphicController; - OUString aStatusText; + VclPtr<SmGraphicWindow> 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; |