diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2020-08-17 09:01:39 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2020-08-17 10:20:48 +0200 |
commit | 3297c44c14d088c83bf729457e3d4ca629dc283c (patch) | |
tree | 9ec7b602da1012da7b87092c9d0c486249c176f7 /sw/inc/unodraw.hxx | |
parent | bb4ebb8bd143f641577fef69276da8dff62b197c (diff) |
sw: prefix members of SwNode2LayImpl, SwRetrievedInputStreamDataManager, ...
... SwXDrawPage and SwXShape
See tdf#94879 for motivation.
Change-Id: I0cfdc1a1b7e1667dccf8db29616b895a76b8fea5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100843
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'sw/inc/unodraw.hxx')
-rw-r--r-- | sw/inc/unodraw.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/inc/unodraw.hxx b/sw/inc/unodraw.hxx index ecead00bf183..2b9b6f2f2f2f 100644 --- a/sw/inc/unodraw.hxx +++ b/sw/inc/unodraw.hxx @@ -80,9 +80,9 @@ typedef cppu::WeakAggImplHelper4 SwXDrawPageBaseClass; class SwXDrawPage final : public SwXDrawPageBaseClass { - SwDoc* pDoc; - css::uno::Reference< css::uno::XAggregation > xPageAgg; - SwFmDrawPage* pDrawPage; + SwDoc* m_pDoc; + css::uno::Reference< css::uno::XAggregation > m_xPageAgg; + SwFmDrawPage* m_pDrawPage; public: SwXDrawPage(SwDoc* pDoc); virtual ~SwXDrawPage() override; @@ -139,7 +139,7 @@ class SwXShape : public SwXShapeBaseClass, public SvtListener const SwFmDrawPage* m_pPage; SwFrameFormat* m_pFormat; - css::uno::Reference< css::uno::XAggregation > xShapeAgg; + css::uno::Reference< css::uno::XAggregation > m_xShapeAgg; // reference to <XShape>, determined in the // constructor by <queryAggregation> at <xShapeAgg>. css::uno::Reference< css::drawing::XShape > mxShape; @@ -147,7 +147,7 @@ class SwXShape : public SwXShapeBaseClass, public SvtListener const SfxItemPropertySet* m_pPropSet; const SfxItemPropertyMapEntry* m_pPropertyMapEntries; - std::unique_ptr<SwShapeDescriptor_Impl> pImpl; + std::unique_ptr<SwShapeDescriptor_Impl> m_pImpl; bool m_bDescriptor; @@ -255,9 +255,9 @@ public: virtual void SAL_CALL setSize( const css::awt::Size& aSize ) override; virtual OUString SAL_CALL getShapeType( ) override; - SwShapeDescriptor_Impl* GetDescImpl() {return pImpl.get();} + SwShapeDescriptor_Impl* GetDescImpl() {return m_pImpl.get();} SwFrameFormat* GetFrameFormat() const { return m_pFormat; } - const css::uno::Reference< css::uno::XAggregation >& GetAggregationInterface() const {return xShapeAgg;} + const css::uno::Reference< css::uno::XAggregation >& GetAggregationInterface() const {return m_xShapeAgg;} // helper static void AddExistingShapeToFormat( SdrObject const & _rObj ); |