summaryrefslogtreecommitdiff
path: root/include/connectivity
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2015-10-16 17:15:50 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2015-10-26 21:04:30 +0000
commitfd9d9976bf346929d872db0e5d8abc4180c9996c (patch)
tree77006fe6cc1447040206849a8ff5ef11f83a9860 /include/connectivity
parent85adff17399701880de5fe4eed16d8ca11b20c82 (diff)
fix includes that are not stand-alone
includes should be able to be included on their own fix some of the ones that do not respect that rule. Change-Id: Id161224a1978461d3cea43252f232f18888a4f61 Reviewed-on: https://gerrit.libreoffice.org/19612 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'include/connectivity')
-rw-r--r--include/connectivity/SQLStatementHelper.hxx1
-rw-r--r--include/connectivity/StdTypeDefs.hxx9
2 files changed, 5 insertions, 5 deletions
diff --git a/include/connectivity/SQLStatementHelper.hxx b/include/connectivity/SQLStatementHelper.hxx
index 704946b46d8c..19e5ce8bd734 100644
--- a/include/connectivity/SQLStatementHelper.hxx
+++ b/include/connectivity/SQLStatementHelper.hxx
@@ -22,6 +22,7 @@
#include <connectivity/dbtoolsdllapi.hxx>
#include <com/sun/star/beans/XPropertySet.hpp>
+#include <rtl/ustrbuf.hxx>
namespace dbtools
{
diff --git a/include/connectivity/StdTypeDefs.hxx b/include/connectivity/StdTypeDefs.hxx
index 9c68fc34c834..78720651e723 100644
--- a/include/connectivity/StdTypeDefs.hxx
+++ b/include/connectivity/StdTypeDefs.hxx
@@ -19,18 +19,17 @@
#ifndef INCLUDED_CONNECTIVITY_STDTYPEDEFS_HXX
#define INCLUDED_CONNECTIVITY_STDTYPEDEFS_HXX
-#include <sal/config.h>
-
#include <map>
#include <vector>
-#include <sal/types.h>
+
+#include <rtl/ustring.hxx>
namespace connectivity
{
typedef ::std::vector< OUString> TStringVector;
- typedef ::std::vector< sal_Int32> TIntVector;
- typedef ::std::map<sal_Int32,sal_Int32> TInt2IntMap;
+ typedef ::std::vector< sal_Int32> TIntVector;
+ typedef ::std::map<sal_Int32,sal_Int32> TInt2IntMap;
typedef ::std::map< OUString,sal_Int32> TString2IntMap;
typedef ::std::map< sal_Int32,OUString> TInt2StringMap;
}