diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-05 21:40:28 +0100 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-05 21:40:28 +0100 |
commit | 8851524e49922cd64d387015cdcc9aa4fcede151 (patch) | |
tree | e722aee2cfb903653d6616ce38d1f0ecb9c26011 /slideshow | |
parent | 86187c3b33583a920860e265790c2bc878e82f8f (diff) |
Migrating to boost unordered containers
Diffstat (limited to 'slideshow')
-rw-r--r-- | slideshow/source/engine/eventmultiplexer.cxx | 2 | ||||
-rw-r--r-- | slideshow/source/engine/slide/layermanager.hxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/slideshow/source/engine/eventmultiplexer.cxx b/slideshow/source/engine/eventmultiplexer.cxx index 4013ab966d70..54a212746a4a 100644 --- a/slideshow/source/engine/eventmultiplexer.cxx +++ b/slideshow/source/engine/eventmultiplexer.cxx @@ -62,7 +62,7 @@ #include <boost/bind.hpp> #include <vector> -#include <hash_map> +#include <boost/unordered_map.hpp> #include <algorithm> using namespace ::com::sun::star; diff --git a/slideshow/source/engine/slide/layermanager.hxx b/slideshow/source/engine/slide/layermanager.hxx index 726d2a59c136..aee137e140aa 100644 --- a/slideshow/source/engine/slide/layermanager.hxx +++ b/slideshow/source/engine/slide/layermanager.hxx @@ -42,7 +42,7 @@ #include <vector> #include <map> -#include <hash_map> +#include <boost/unordered_map.hpp> #include <algorithm> #include <functional> @@ -245,7 +245,7 @@ namespace slideshow Provides quicker lookup than ShapeSet for simple mappings */ - typedef ::std::hash_map< + typedef ::boost::unordered_map< ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape >, ShapeSharedPtr, |