sw/source/core/crsr/findtxt.cxx |    4 ++++
 sw/source/core/inc/txtfrm.hxx   |    7 +++++++
 2 files changed, 11 insertions(+)

New commits:
commit 0e4ea2d08a2bf7bda47815ed32b19e70c0d7e905
Author:     Tomáš Chvátal <tchva...@suse.com>
AuthorDate: Wed Mar 20 12:05:39 2019 +0100
Commit:     Tomáš Chvátal <tchva...@suse.cz>
CommitDate: Fri Mar 22 11:44:11 2019 +0100

    Add few more fixes to build with Boost < 1.56
    
    Change-Id: Ifbdbf7f2d44d569c491b1822d9d842433a9978a1
    Reviewed-on: https://gerrit.libreoffice.org/69462
    Tested-by: Jenkins
    Reviewed-by: Tomáš Chvátal <tchva...@suse.cz>

diff --git a/sw/source/core/crsr/findtxt.cxx b/sw/source/core/crsr/findtxt.cxx
index eeba1415994c..8503a98c17c2 100644
--- a/sw/source/core/crsr/findtxt.cxx
+++ b/sw/source/core/crsr/findtxt.cxx
@@ -151,7 +151,11 @@ public:
     {
         if (pFrame)
         {
+#if BOOST_VERSION < 105600
+            m_oMergedIter.reset(*pFrame);
+#else
             m_oMergedIter.emplace(*pFrame);
+#endif
         }
     }
 
diff --git a/sw/source/core/inc/txtfrm.hxx b/sw/source/core/inc/txtfrm.hxx
index 4cf13bbdf1c5..51eaf62279c5 100644
--- a/sw/source/core/inc/txtfrm.hxx
+++ b/sw/source/core/inc/txtfrm.hxx
@@ -24,6 +24,8 @@
 #include <ndtxt.hxx>
 #include "TextFrameIndex.hxx"
 
+#include <boost/version.hpp>
+
 namespace com { namespace sun { namespace star { namespace linguistic2 { class 
XHyphenatedWord; } } } }
 
 namespace sw { namespace mark { class IMark; } }
@@ -978,8 +980,13 @@ struct MergedPara
 class MergedAttrIterBase
 {
 protected:
+#if BOOST_VERSION < 105600
+    sw::MergedPara const* m_pMerged;
+    SwTextNode const* m_pNode;
+#else
     sw::MergedPara const*const m_pMerged;
     SwTextNode const*const m_pNode;
+#endif
     size_t m_CurrentExtent;
     size_t m_CurrentHint;
     MergedAttrIterBase(SwTextFrame const& rFrame);
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to