diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2016-11-17 20:48:53 -0500 |
---|---|---|
committer | Kohei Yoshida <libreoffice@kohei.us> | 2016-11-18 13:52:44 +0000 |
commit | 7295ca03ece7b850b669fb275ebf78c3db3ac25f (patch) | |
tree | 4b8cacb25b5690204bbc7903b9129993f423b7fb /sc/source/ui/inc/inputwin.hxx | |
parent | f32da6e74339493ae631641d6c85881c5b10a58d (diff) |
Use std::unique_ptr for pEditEngine.
And rename it to mpEditEngine.
Change-Id: Iacaad04ca476bfb5b5e35e6e29f372812c40b3bc
Reviewed-on: https://gerrit.libreoffice.org/30945
Reviewed-by: Kohei Yoshida <libreoffice@kohei.us>
Tested-by: Kohei Yoshida <libreoffice@kohei.us>
Diffstat (limited to 'sc/source/ui/inc/inputwin.hxx')
-rw-r--r-- | sc/source/ui/inc/inputwin.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/inc/inputwin.hxx b/sc/source/ui/inc/inputwin.hxx index 838fd9edae27..ba9f0a108b86 100644 --- a/sc/source/ui/inc/inputwin.hxx +++ b/sc/source/ui/inc/inputwin.hxx @@ -130,7 +130,7 @@ private: OUString aString; vcl::Font aTextFont; - ScEditEngineDefaulter* pEditEngine; // only created when needed + std::unique_ptr<ScEditEngineDefaulter> mpEditEngine; // only created when needed std::unique_ptr<EditView> mpEditView; AccTextDataVector maAccTextDatas; // #i105267# text datas may be cloned, remember all copies bool bIsRTL; |