diff options
Diffstat (limited to 'sfx2/source/appl/newhelp.cxx')
-rw-r--r-- | sfx2/source/appl/newhelp.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/appl/newhelp.cxx b/sfx2/source/appl/newhelp.cxx index a2ae700b89b9..61fa1596f66a 100644 --- a/sfx2/source/appl/newhelp.cxx +++ b/sfx2/source/appl/newhelp.cxx @@ -36,7 +36,6 @@ #include "newhelp.hrc" #include "helpid.hrc" -#include <boost/unordered_map.hpp> #include <rtl/ustrbuf.hxx> #include <comphelper/configurationhelper.hxx> #include <comphelper/processfactory.hxx> @@ -107,6 +106,7 @@ #include <sfx2/objsh.hxx> #include <sfx2/docfac.hxx> +#include <unordered_map> #include <vector> using namespace ::ucbhelper; @@ -552,7 +552,7 @@ IndexTabPage_Impl::~IndexTabPage_Impl() namespace sfx2 { - typedef ::boost::unordered_map< OUString, int, OUStringHash > KeywordInfo; + typedef std::unordered_map< OUString, int, OUStringHash > KeywordInfo; } #define NEW_ENTRY( url, bool ) \ |