Fix visibility problem on Windows.

This commit is contained in:
Jan Holesovsky
2011-11-28 11:24:14 +01:00
parent 227eef01b8
commit dabe836c6e

View File

@@ -71,7 +71,7 @@ public:
// One could theoretically use oox::AttributeList, but that complains if the passed reference is empty, // 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 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. // 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; bool hasAttribute( int token ) const;
rtl::OUString attribute( int token, const rtl::OUString& def = rtl::OUString()) 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. 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, 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 >(), const com::sun::star::uno::Reference< com::sun::star::xml::sax::XFastAttributeList >& attributes = com::sun::star::uno::Reference< com::sun::star::xml::sax::XFastAttributeList >(),