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 /cui | |
parent | 4a8175ebeb58555e5d48df134cfaf128293888f1 (diff) |
Get rid of DECLARE_STL_VECTOR
Change-Id: If4588034fc09e4663b5217669c71f26c0a3b8c8a
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/connpoolsettings.hxx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/cui/source/options/connpoolsettings.hxx b/cui/source/options/connpoolsettings.hxx index 26a68c867c51..3a40015c9ff1 100644 --- a/cui/source/options/connpoolsettings.hxx +++ b/cui/source/options/connpoolsettings.hxx @@ -20,7 +20,10 @@ #ifndef INCLUDED_CUI_SOURCE_OPTIONS_CONNPOOLSETTINGS_HXX #define INCLUDED_CUI_SOURCE_OPTIONS_CONNPOOLSETTINGS_HXX -#include <comphelper/stl_types.hxx> +#include <sal/config.h> + +#include <vector> + #include <rtl/ustring.hxx> #include <svl/poolitem.hxx> @@ -50,12 +53,12 @@ namespace offapp class DriverPoolingSettings { protected: - DECLARE_STL_VECTOR( DriverPooling, DriverSettings ); + typedef std::vector<DriverPooling> DriverSettings; DriverSettings m_aDrivers; public: - typedef ConstDriverSettingsIterator const_iterator; - typedef DriverSettingsIterator iterator; + typedef DriverSettings::const_iterator const_iterator; + typedef DriverSettings::iterator iterator; public: DriverPoolingSettings(); |