summaryrefslogtreecommitdiffstats
path: root/xmloff/inc/txtlists.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-01-31 12:28:28 +0000
committerCaolán McNamara <caolanm@redhat.com>2016-01-31 17:25:52 +0000
commit1fd280f2c63cdf8d24b48c02fe384f0bc20682c1 (patch)
tree35b84f9730d7a6def967869336cc437e94ca6439 /xmloff/inc/txtlists.hxx
parentRevert "tdf#89756 swich postfix to prefix operators" (diff)
downloadcore-1fd280f2c63cdf8d24b48c02fe384f0bc20682c1.tar.gz
core-1fd280f2c63cdf8d24b48c02fe384f0bc20682c1.zip
boost::tuple -> std::tuple
Change-Id: Ia08c184b792ff73d3ed49d6a5d54dec1a35943e9 Reviewed-on: https://gerrit.libreoffice.org/21955 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'xmloff/inc/txtlists.hxx')
-rw-r--r--xmloff/inc/txtlists.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/inc/txtlists.hxx b/xmloff/inc/txtlists.hxx
index 46beb4b0e382..fc8f12d8c16c 100644
--- a/xmloff/inc/txtlists.hxx
+++ b/xmloff/inc/txtlists.hxx
@@ -22,10 +22,10 @@
#include <rtl/ustring.hxx>
#include <map>
-#include <vector>
#include <stack>
+#include <tuple>
+#include <vector>
#include <boost/noncopyable.hpp>
-#include <boost/tuple/tuple.hpp>
#include <com/sun/star/container/XIndexReplace.hpp>
#include <xmloff/xmlictxt.hxx>
@@ -126,9 +126,9 @@ class XMLTextListsHelper : private boost::noncopyable
XMLTextListBlockContext, XMLTextListItemContext,
XMLNumberedParaContext
*/
- typedef ::boost::tuple<SvXMLImportContextRef,
+ typedef std::tuple<SvXMLImportContextRef,
SvXMLImportContextRef, SvXMLImportContextRef> ListStackFrame_t;
- ::std::stack< ListStackFrame_t > mListStack;
+ std::stack< ListStackFrame_t > mListStack;
// container type for processed lists:
// map with <ListId> as key and pair( <ListStyleName, ContinueListId> )