From ca8787a98171070c771dc167b43d5bdb98c52ce4 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 4 Jan 2015 11:10:45 +0000 Subject: boost::unordered_map->std::unordered_map Change-Id: I5d458f43616edc395faa8c27edaddc7d515166db --- scripting/source/dlgprov/dlgevtatt.hxx | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'scripting/source/dlgprov') diff --git a/scripting/source/dlgprov/dlgevtatt.hxx b/scripting/source/dlgprov/dlgevtatt.hxx index de1ff424b1ab..b66260303c39 100644 --- a/scripting/source/dlgprov/dlgevtatt.hxx +++ b/scripting/source/dlgprov/dlgevtatt.hxx @@ -32,20 +32,15 @@ #include -#include - +#include namespace dlgprov { - - - // class DialogEventsAttacherImpl - - typedef boost::unordered_map< OUString, + typedef std::unordered_map< OUString, ::com::sun::star::uno::Reference< ::com::sun::star::script::XScriptListener >, OUStringHash, - ::std::equal_to< OUString > > ListenerHash; + std::equal_to< OUString > > ListenerHash; typedef ::cppu::WeakImplHelper1< ::com::sun::star::script::XScriptEventsAttacher > DialogEventsAttacherImpl_BASE; -- cgit