summaryrefslogtreecommitdiff
path: root/include/filter
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-20 17:13:45 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-21 14:46:23 +0000
commitb8f4b28cf6fa6c16d714179913be8c1198a11844 (patch)
tree3580bd4ca9312c2991c605a448df8aa7acec1141 /include/filter
parent1dbc9e022e750a16dbf5b530783c4adaafd609f5 (diff)
Use delegating constructor
Change-Id: I793130bda833f4eb6ba5f2901adb2362ce666fe9 Reviewed-on: https://gerrit.libreoffice.org/15829 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/filter')
-rw-r--r--include/filter/msfilter/escherex.hxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/filter/msfilter/escherex.hxx b/include/filter/msfilter/escherex.hxx
index 4e3f8d7b7456..8c1fbbe7c6a8 100644
--- a/include/filter/msfilter/escherex.hxx
+++ b/include/filter/msfilter/escherex.hxx
@@ -772,13 +772,13 @@ class MSFILTER_DLLPUBLIC EscherPropertyContainer
SvStream* pPicOutStrm;
Rectangle* pShapeBoundRect;
- EscherPropSortStruct* pSortStruct;
-
sal_uInt32 nSortCount;
sal_uInt32 nSortBufSize;
sal_uInt32 nCountCount;
sal_uInt32 nCountSize;
+ EscherPropSortStruct* pSortStruct;
+
bool bHasComplexData;
@@ -789,7 +789,10 @@ class MSFILTER_DLLPUBLIC EscherPropertyContainer
bool bCreateCroppingAttributes
);
bool ImplCreateEmbeddedBmp( const OString& rUniqueId );
- void ImplInit();
+
+ SAL_DLLPRIVATE explicit EscherPropertyContainer(
+ EscherGraphicProvider * pGraphProv, SvStream * pPiOutStrm,
+ Rectangle * pBoundRect);
public: