summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-03-14 19:36:04 +0100
committerFridrich Strba <fridrich@documentfoundation.org>2013-04-02 18:05:35 +0000
commitafa375d7f7b1094c96597bbc3793fbc9adb87d60 (patch)
tree5f48bc74ae4ab49ee0fa047944a2a4517626982c /sw/inc
parent749095a80b526fab01acf8bf5bee824ce7cbb664 (diff)
SwFrmFmts: MSVC does stupid things with dllexporting templates
... so work around that. Was triggered by new use of std::vector<SwFrmFmt*> in 1c22545edf9085b9f2656ca92781158b6b123db3 Change-Id: Ibf2aa521c7561d3973c8293aacdf71353e6d65aa (cherry picked from commit abccbae3d8376d7f8b79d517a758daeac08af003) Reviewed-on: https://gerrit.libreoffice.org/3177 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/docary.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/sw/inc/docary.hxx b/sw/inc/docary.hxx
index 7212c067315b..3cf5d086c4e9 100644
--- a/sw/inc/docary.hxx
+++ b/sw/inc/docary.hxx
@@ -65,8 +65,11 @@ public:
virtual ~SwGrfFmtColls() {}
};
+/// stupid base class to work around MSVC dllexport mess
+class SAL_DLLPUBLIC_TEMPLATE SwFrmFmts_Base : public std::vector<SwFrmFmt*> {};
+
/// Specific frame formats (frames, DrawObjects).
-class SW_DLLPUBLIC SwFrmFmts : public std::vector<SwFrmFmt*>, public SwFmtsBase
+class SW_DLLPUBLIC SwFrmFmts : public SwFrmFmts_Base, public SwFmtsBase
{
public:
virtual size_t GetFmtCount() const { return size(); }