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 | ea6acd9fcf785b68670b10cbbe3f74bb977815f8 (patch) | |
tree | fc39111f5eba6698f53dd77344846c7e042a270e /slideshow/source/engine | |
parent | 48f4f5f4283cb9a58223c6cc6f4d0ebadce53722 (diff) |
Migrating to boost unordered containers
Diffstat (limited to 'slideshow/source/engine')
-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 4f5ecd4f8..2fdd52b70 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 cf5e01329..0e3990eed 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, |