summaryrefslogtreecommitdiff
path: root/include/basic
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2016-02-06 16:06:48 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-02-08 12:31:10 +0000
commit4c411636d9f3e8be085ca02af6fad448838834b1 (patch)
tree155932e717fe95d2237c37d18f164fd93c5a50c9 /include/basic
parent310b65e5e93c500ac5ae3981120809df09230e56 (diff)
sequence->vector in basic
Change-Id: Ic42f7218bda81effe870d950f666ba7653d60c66 Reviewed-on: https://gerrit.libreoffice.org/22177 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/basic')
-rw-r--r--include/basic/basmgr.hxx2
-rw-r--r--include/basic/modsizeexceeded.hxx3
2 files changed, 3 insertions, 2 deletions
diff --git a/include/basic/basmgr.hxx b/include/basic/basmgr.hxx
index d64259a0c598..c9227ee55010 100644
--- a/include/basic/basmgr.hxx
+++ b/include/basic/basmgr.hxx
@@ -194,7 +194,7 @@ public:
@param _out_rModuleNames
takes the names of modules whose size exceeds the legacy limit
*/
- bool LegacyPsswdBinaryLimitExceeded( css::uno::Sequence< OUString >& _out_rModuleNames );
+ bool LegacyPsswdBinaryLimitExceeded( std::vector< OUString >& _out_rModuleNames );
bool HasExeCode( const OUString& );
/// determines whether the Basic Manager has a given macro, given by fully qualified name
bool HasMacro( OUString const& i_fullyQualifiedName ) const;
diff --git a/include/basic/modsizeexceeded.hxx b/include/basic/modsizeexceeded.hxx
index 1ddec377af8d..5f9cc18cda49 100644
--- a/include/basic/modsizeexceeded.hxx
+++ b/include/basic/modsizeexceeded.hxx
@@ -23,12 +23,13 @@
#include <com/sun/star/task/XInteractionHandler.hpp>
#include <cppuhelper/implbase1.hxx>
#include <basic/basicdllapi.h>
+#include <vector>
class BASIC_DLLPUBLIC ModuleSizeExceeded : public ::cppu::WeakImplHelper1< css::task::XInteractionRequest >
{
// C++ interface
public:
- ModuleSizeExceeded( const css::uno::Sequence<OUString>& sModules );
+ ModuleSizeExceeded( const std::vector<OUString>& sModules );
bool isAbort() const;
bool isApprove() const;