summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2017-11-03 20:48:38 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2017-11-04 00:02:08 +0100
commit8ce49eab696d830d420fbf48b22ac151167bbd62 (patch)
tree7149b7897534e9f9e63ac4394949743ac6ea79dc /include
parentf218f8f6c8c587d2d78679f935093329f145fede (diff)
sfx2: Omit unnecessary indirection of SfxFrameDescriptor_Impl
Change-Id: I43c9df757d78420bd119a06e7f7224e40690b753 Reviewed-on: https://gerrit.libreoffice.org/44255 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp> Tested-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/frmdescr.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sfx2/frmdescr.hxx b/include/sfx2/frmdescr.hxx
index 8433afa93887..cd0184c1f2e4 100644
--- a/include/sfx2/frmdescr.hxx
+++ b/include/sfx2/frmdescr.hxx
@@ -66,7 +66,7 @@ class SFX2_DLLPUBLIC SfxFrameDescriptor
ScrollingMode eScroll;
bool bHasBorder;
bool bHasBorderSet;
- std::unique_ptr< SfxFrameDescriptor_Impl > pImpl;
+ std::unique_ptr<SfxItemSet> m_pArgs;
public:
SfxFrameDescriptor();