summaryrefslogtreecommitdiff
path: root/oox/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-11-22 08:40:43 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-11-22 20:31:27 +0100
commit5f520f757774db17ea4e33d34c724cf2af3adcba (patch)
tree311668c50e69fa29f6e9d54605a361f374c00147 /oox/inc
parentf394ea0b6b58ed516977803f00c0147bb0facc25 (diff)
make some classes module-private
Change-Id: If7303a082e06f6937fca911c578a40475546cda2 Reviewed-on: https://gerrit.libreoffice.org/83442 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'oox/inc')
-rw-r--r--oox/inc/drawingml/fillproperties.hxx2
-rw-r--r--oox/inc/drawingml/lineproperties.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/oox/inc/drawingml/fillproperties.hxx b/oox/inc/drawingml/fillproperties.hxx
index 45f5c4b40272..f189a91344e8 100644
--- a/oox/inc/drawingml/fillproperties.hxx
+++ b/oox/inc/drawingml/fillproperties.hxx
@@ -126,7 +126,7 @@ struct BlipFillProperties
void assignUsed( const BlipFillProperties& rSourceProps );
};
-struct OOX_DLLPUBLIC FillProperties
+struct FillProperties
{
OptValue< sal_Int32 > moFillType; /// Fill type (OOXML token).
Color maFillColor; /// Solid fill color and transparence.
diff --git a/oox/inc/drawingml/lineproperties.hxx b/oox/inc/drawingml/lineproperties.hxx
index b0d27a278373..46be7b9bd0a2 100644
--- a/oox/inc/drawingml/lineproperties.hxx
+++ b/oox/inc/drawingml/lineproperties.hxx
@@ -49,7 +49,7 @@ struct LineArrowProperties
void assignUsed( const LineArrowProperties& rSourceProps );
};
-struct OOX_DLLPUBLIC LineProperties
+struct LineProperties
{
typedef ::std::pair< sal_Int32, sal_Int32 > DashStop;
typedef ::std::vector< DashStop > DashStopVector;