summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2013-04-10 15:14:20 +0200
committerMiklos Vajna <vmiklos@suse.cz>2013-04-10 18:48:25 +0200
commit1c2bae45d39aa75e6387ed652d911ff778e517ce (patch)
treeab098c08bf18b46a204d56ac5c833d3caadfe62d /oox
parenteb04db616a5c59f72217d6818199e6d227c4abef (diff)
oox: make these classes public
They were already declared in oox/inc/oox/*, but one header wasn't delivered, the rest wasn't visible outside the library. Having them public makes it possible to re-use them from writerfilter, e.g. in the RTF gradient import code. Change-Id: I13d8c860b2582489d216fd68295f230d5c98f31b
Diffstat (limited to 'oox')
-rw-r--r--oox/Package_inc.mk1
-rw-r--r--oox/inc/oox/helper/modelobjecthelper.hxx5
-rw-r--r--oox/inc/oox/vml/vmlformatting.hxx2
3 files changed, 5 insertions, 3 deletions
diff --git a/oox/Package_inc.mk b/oox/Package_inc.mk
index 517cc83094bd..b6bd76ad5ff2 100644
--- a/oox/Package_inc.mk
+++ b/oox/Package_inc.mk
@@ -84,6 +84,7 @@ $(eval $(call gb_Package_add_file,oox_inc,inc/oox/helper/propertymap.hxx,oox/hel
$(eval $(call gb_Package_add_file,oox_inc,inc/oox/helper/propertyset.hxx,oox/helper/propertyset.hxx))
$(eval $(call gb_Package_add_file,oox_inc,inc/oox/helper/attributelist.hxx,oox/helper/attributelist.hxx))
$(eval $(call gb_Package_add_file,oox_inc,inc/oox/helper/progressbar.hxx,oox/helper/progressbar.hxx))
+$(eval $(call gb_Package_add_file,oox_inc,inc/oox/helper/modelobjecthelper.hxx,oox/helper/modelobjecthelper.hxx))
$(eval $(call gb_Package_add_file,oox_inc,inc/oox/mathml/export.hxx,oox/mathml/export.hxx))
$(eval $(call gb_Package_add_file,oox_inc,inc/oox/mathml/import.hxx,oox/mathml/import.hxx))
$(eval $(call gb_Package_add_file,oox_inc,inc/oox/mathml/importutils.hxx,oox/mathml/importutils.hxx))
diff --git a/oox/inc/oox/helper/modelobjecthelper.hxx b/oox/inc/oox/helper/modelobjecthelper.hxx
index 98b34aa1f4d2..253279a4c05a 100644
--- a/oox/inc/oox/helper/modelobjecthelper.hxx
+++ b/oox/inc/oox/helper/modelobjecthelper.hxx
@@ -21,6 +21,7 @@
#define OOX_HELPER_MODELOBJECTHELPER_HXX
#include <com/sun/star/uno/Reference.hxx>
+#include "oox/dllapi.h"
namespace com { namespace sun { namespace star {
namespace awt { struct Gradient; }
@@ -36,7 +37,7 @@ namespace oox {
/** This helper manages named objects in a container, which is created on demand.
*/
-class ObjectContainer
+class OOX_DLLPUBLIC ObjectContainer
{
public:
explicit ObjectContainer(
@@ -74,7 +75,7 @@ private:
in the same filter (e.g. embedded charts) which carry their own drawing
object tables.
*/
-class ModelObjectHelper
+class OOX_DLLPUBLIC ModelObjectHelper
{
public:
explicit ModelObjectHelper(
diff --git a/oox/inc/oox/vml/vmlformatting.hxx b/oox/inc/oox/vml/vmlformatting.hxx
index 91356e36bce2..b7b9e6ae0411 100644
--- a/oox/inc/oox/vml/vmlformatting.hxx
+++ b/oox/inc/oox/vml/vmlformatting.hxx
@@ -200,7 +200,7 @@ struct StrokeModel
// ============================================================================
/** The fill model structure contains all shape fill properties. */
-struct FillModel
+struct OOX_DLLPUBLIC FillModel
{
OptValue< bool > moFilled; ///< Shape fill on/off.
OptValue< OUString > moColor; ///< Solid fill color.