summaryrefslogtreecommitdiff
path: root/oox/inc
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@suse.cz>2011-11-28 11:24:14 +0100
committerJan Holesovsky <kendy@suse.cz>2011-11-28 11:27:15 +0100
commitdabe836c6ed66c5740582c17dbc39b2196608e6d (patch)
tree2f28b5c1048e3001e9890ae5b5a4d008e89a4f52 /oox/inc
parent227eef01b8fc343fd51f4d6a628dedbbc311c68c (diff)
Fix visibility problem on Windows.
Diffstat (limited to 'oox/inc')
-rw-r--r--oox/inc/oox/mathml/importutils.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/inc/oox/mathml/importutils.hxx b/oox/inc/oox/mathml/importutils.hxx
index ad6ad6b41ca6..3a59320317aa 100644
--- a/oox/inc/oox/mathml/importutils.hxx
+++ b/oox/inc/oox/mathml/importutils.hxx
@@ -71,7 +71,7 @@ public:
// One could theoretically use oox::AttributeList, but that complains if the passed reference is empty,
// which would be complicated to avoid here. Also, parsers apparently reuse the same instance of XFastAttributeList,
// which means using oox::AttributeList would make them all point to the one instance.
- struct AttributeList
+ struct OOX_DLLPUBLIC AttributeList
{
bool hasAttribute( int token ) const;
rtl::OUString attribute( int token, const rtl::OUString& def = rtl::OUString()) const;
@@ -82,7 +82,7 @@ public:
/**
Structure representing a tag, including its attributes and content text immediatelly following it.
*/
- struct Tag
+ struct OOX_DLLPUBLIC Tag
{
Tag( int token = XML_TOKEN_INVALID,
const com::sun::star::uno::Reference< com::sun::star::xml::sax::XFastAttributeList >& attributes = com::sun::star::uno::Reference< com::sun::star::xml::sax::XFastAttributeList >(),