diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-12-06 10:17:37 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-12-06 10:37:50 +0100 |
commit | c78f7d85ab72a447cabbeebcc76706b796c7308a (patch) | |
tree | 76bc731ae0268960e2bf95a06476fa516f7b78e1 /include/dbaccess | |
parent | 1a715d4d67ca398d59a8f7e8b41bdfeeabdd4b74 (diff) |
Get rid of DECLARE_STL_MAP
Change-Id: Ifbda934a89087fcc1c031978d3e5b5783722b328
Diffstat (limited to 'include/dbaccess')
-rw-r--r-- | include/dbaccess/genericcontroller.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/dbaccess/genericcontroller.hxx b/include/dbaccess/genericcontroller.hxx index 3e86a2a1fd85..e5af4575a56c 100644 --- a/include/dbaccess/genericcontroller.hxx +++ b/include/dbaccess/genericcontroller.hxx @@ -22,6 +22,8 @@ #include <sal/config.h> +#include <deque> +#include <map> #include <vector> #include <dbaccess/AsyncronousLink.hxx> @@ -51,7 +53,6 @@ #include <comphelper/broadcasthelper.hxx> #include <comphelper/sharedmutex.hxx> #include <comphelper/namedvaluecollection.hxx> -#include <comphelper/stl_types.hxx> #include <connectivity/dbexception.hxx> #include <cppuhelper/compbase11.hxx> #include <cppuhelper/interfacecontainer.h> @@ -229,7 +230,7 @@ namespace dbaui DispatchTarget(const ::com::sun::star::util::URL& rURL, const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XStatusListener > xRef) : aURL(rURL), xListener(xRef) { } }; - DECLARE_STL_MAP( sal_uInt16, FeatureState, ::std::less< sal_uInt16 >, StateCache ); + typedef std::map<sal_uInt16, FeatureState> StateCache; typedef std::vector<DispatchTarget> Dispatch; FeatureListeners m_aFeaturesToInvalidate; |