diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-01 19:58:59 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-02 16:14:36 +0000 |
commit | fd1372ba8b1c3eb3c7fad6d9c623176c8071f31b (patch) | |
tree | 448f0d04f780007b3eeeb76b7c4c8c54cbfd6d9b /xmloff/source/text | |
parent | c48b928acab9f226ad5ad816fe773c21051431e8 (diff) |
boost::unordered_map->std::unordered_map
you can get debug stl this way
Change-Id: Ia70a3e7c7c452390e8bee34975d296c9318e4a19
Diffstat (limited to 'xmloff/source/text')
-rw-r--r-- | xmloff/source/text/txtparae.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx index 9ad98920a93a..c73c802c73ee 100644 --- a/xmloff/source/text/txtparae.cxx +++ b/xmloff/source/text/txtparae.cxx @@ -21,9 +21,6 @@ #include <tools/debug.hxx> #include <rtl/ustrbuf.hxx> #include <sal/types.h> -#include <vector> -#include <list> -#include <boost/unordered_map.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/container/XEnumerationAccess.hpp> #include <com/sun/star/container/XEnumeration.hpp> @@ -108,6 +105,9 @@ #include <com/sun/star/document/XStorageBasedDocument.hpp> #include <txtlists.hxx> #include <com/sun/star/rdf/XMetadatable.hpp> +#include <list> +#include <unordered_map> +#include <vector> using namespace ::std; using namespace ::com::sun::star; @@ -198,7 +198,7 @@ namespace }; private: - typedef boost::unordered_map< + typedef std::unordered_map< Reference<XTextFrame>, TextContentSet, FrameRefHash> framebound_map_t; |