diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-12-05 23:42:23 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-12-06 08:04:23 +0100 |
commit | 07ab0d43b58cf7ee16c36016d6b9b70c0ebbb9b1 (patch) | |
tree | ac80d5449c42f832c14eb3fb3030208ae752b282 /include/dbaccess/genericcontroller.hxx | |
parent | 4a8175ebeb58555e5d48df134cfaf128293888f1 (diff) |
Get rid of DECLARE_STL_VECTOR
Change-Id: If4588034fc09e4663b5217669c71f26c0a3b8c8a
Diffstat (limited to 'include/dbaccess/genericcontroller.hxx')
-rw-r--r-- | include/dbaccess/genericcontroller.hxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/dbaccess/genericcontroller.hxx b/include/dbaccess/genericcontroller.hxx index 682c04b8b49c..3e86a2a1fd85 100644 --- a/include/dbaccess/genericcontroller.hxx +++ b/include/dbaccess/genericcontroller.hxx @@ -20,6 +20,10 @@ #ifndef INCLUDED_DBACCESS_GENERICCONTROLLER_HXX #define INCLUDED_DBACCESS_GENERICCONTROLLER_HXX +#include <sal/config.h> + +#include <vector> + #include <dbaccess/AsyncronousLink.hxx> #include <dbaccess/controllerframe.hxx> #include <dbaccess/dbaccessdllapi.h> @@ -226,7 +230,7 @@ namespace dbaui }; DECLARE_STL_MAP( sal_uInt16, FeatureState, ::std::less< sal_uInt16 >, StateCache ); - DECLARE_STL_VECTOR( DispatchTarget, Dispatch); + typedef std::vector<DispatchTarget> Dispatch; FeatureListeners m_aFeaturesToInvalidate; |