diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2016-04-03 22:25:19 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-04-05 06:25:39 +0000 |
commit | db43ef00c12bc0f7fefd6d028c9a2ed8f771cd47 (patch) | |
tree | 62f08a44e99513251324f8972d257d8fd3be2b2c /desktop/source/deployment/inc | |
parent | e72c80c01629798a93948d4419f109ac324de4ef (diff) |
sequence->vector in xmlscript
Change-Id: I4f99cd9dc659f54bd4818559dd3e0dbce1e8f5d4
Reviewed-on: https://gerrit.libreoffice.org/23795
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'desktop/source/deployment/inc')
-rw-r--r-- | desktop/source/deployment/inc/dp_ucb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop/source/deployment/inc/dp_ucb.h b/desktop/source/deployment/inc/dp_ucb.h index 324e39896e59..174af57c87e9 100644 --- a/desktop/source/deployment/inc/dp_ucb.h +++ b/desktop/source/deployment/inc/dp_ucb.h @@ -21,6 +21,7 @@ #define INCLUDED_DESKTOP_SOURCE_DEPLOYMENT_INC_DP_UCB_H #include <list> +#include <vector> #include <rtl/byteseq.hxx> #include <rtl/instance.hxx> #include <com/sun/star/sdbc/XResultSet.hpp> @@ -80,7 +81,7 @@ DESKTOP_DEPLOYMENTMISC_DLLPUBLIC bool erase_path( DESKTOP_DEPLOYMENTMISC_DLLPUBLIC -::rtl::ByteSequence readFile( ::ucbhelper::Content & ucb_content ); +std::vector<sal_Int8> readFile( ::ucbhelper::Content & ucb_content ); DESKTOP_DEPLOYMENTMISC_DLLPUBLIC |