summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/inc/commontypes.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-12-05 23:42:23 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-12-06 08:04:23 +0100
commit07ab0d43b58cf7ee16c36016d6b9b70c0ebbb9b1 (patch)
treeac80d5449c42f832c14eb3fb3030208ae752b282 /dbaccess/source/ui/inc/commontypes.hxx
parent4a8175ebeb58555e5d48df134cfaf128293888f1 (diff)
Get rid of DECLARE_STL_VECTOR
Change-Id: If4588034fc09e4663b5217669c71f26c0a3b8c8a
Diffstat (limited to 'dbaccess/source/ui/inc/commontypes.hxx')
-rw-r--r--dbaccess/source/ui/inc/commontypes.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/inc/commontypes.hxx b/dbaccess/source/ui/inc/commontypes.hxx
index e87ef1317643..c63dbe6a27c4 100644
--- a/dbaccess/source/ui/inc/commontypes.hxx
+++ b/dbaccess/source/ui/inc/commontypes.hxx
@@ -23,8 +23,8 @@
#include <sal/config.h>
#include <set>
+#include <vector>
-#include <comphelper/stl_types.hxx>
#include <unotools/sharedunocomponent.hxx>
namespace com { namespace sun { namespace star {
@@ -37,8 +37,8 @@ namespace dbaui
{
typedef std::set<OUString> StringBag;
- DECLARE_STL_VECTOR( sal_Int8, ByteVector );
- DECLARE_STL_VECTOR( OUString, StringArray );
+ typedef std::vector<sal_Int8> ByteVector;
+ typedef std::vector<OUString> StringArray;
typedef ::utl::SharedUNOComponent< ::com::sun::star::sdbc::XConnection > SharedConnection;