diff options
author | Cédric Bosdonnat <cedricbosdo@openoffice.org> | 2010-10-27 14:25:40 +0200 |
---|---|---|
committer | Cédric Bosdonnat <cedricbosdo@openoffice.org> | 2010-10-27 14:27:45 +0200 |
commit | 439ccc079ad3884b34b7baf8f2004dde398dc65e (patch) | |
tree | 4ebe52f936ed30a50384ffc53d26dd7c8f93d0ce /sw/inc/IMark.hxx | |
parent | 0178c09afe75603351cab8e8c022213f8ea7b854 (diff) |
Fixed some fields import bug: symbol visibility problem
Diffstat (limited to 'sw/inc/IMark.hxx')
-rw-r--r-- | sw/inc/IMark.hxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sw/inc/IMark.hxx b/sw/inc/IMark.hxx index 007e4d3a25fa..66d1dc6d19df 100644 --- a/sw/inc/IMark.hxx +++ b/sw/inc/IMark.hxx @@ -33,6 +33,7 @@ #include <pam.hxx> #include <boost/operators.hpp> #include <map> +#include "swdll.hxx" #ifndef SW_DECL_SWSERVEROBJECT_DEFINED #define SW_DECL_SWSERVEROBJECT_DEFINED @@ -44,7 +45,7 @@ struct SwPosition; namespace sw { namespace mark { - class IMark + class SAL_DLLPUBLIC_EXPORT IMark : virtual public SwModify // inherited as interface , public ::boost::totally_ordered<IMark> { @@ -82,7 +83,7 @@ namespace sw { namespace mark virtual rtl::OUString ToString( ) const =0; }; - class IBookmark + class SAL_DLLPUBLIC_EXPORT IBookmark : virtual public IMark { public: @@ -92,7 +93,7 @@ namespace sw { namespace mark virtual void SetKeyCode(const KeyCode&) =0; }; - class IFieldmark + class SAL_DLLPUBLIC_EXPORT IFieldmark : virtual public IMark { public: @@ -109,7 +110,7 @@ namespace sw { namespace mark virtual void Invalidate() = 0; }; - class ICheckboxFieldmark + class SAL_DLLPUBLIC_EXPORT ICheckboxFieldmark : virtual public IFieldmark { public: |