summaryrefslogtreecommitdiff
path: root/include/linguistic
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2016-02-23 19:41:53 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-04-01 07:33:32 +0000
commit46b4634de93bdda2a8427c6c545dc6160d5201d0 (patch)
tree4c6245229f65d9a96bbc7f098767b392e86629ae /include/linguistic
parent9f6e6fabcd5718e0b65437c5ce398e520f47aae1 (diff)
sequence->vector in linguistic
Change-Id: I28ed0b4bb2a140493fca693807011b91b3569986 Reviewed-on: https://gerrit.libreoffice.org/23695 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/linguistic')
-rw-r--r--include/linguistic/misc.hxx2
-rw-r--r--include/linguistic/spelldta.hxx8
2 files changed, 5 insertions, 5 deletions
diff --git a/include/linguistic/misc.hxx b/include/linguistic/misc.hxx
index 9e7cb3f6d100..99dfd052e4e4 100644
--- a/include/linguistic/misc.hxx
+++ b/include/linguistic/misc.hxx
@@ -118,7 +118,7 @@ bool FileExists( const OUString &rURL );
OUString GetDictionaryWriteablePath();
-css::uno::Sequence< OUString > GetDictionaryPaths();
+std::vector< OUString > GetDictionaryPaths();
/// @returns an URL for a new and writable dictionary rDicName.
/// The URL will point to the path given by 'GetDictionaryWriteablePath'
diff --git a/include/linguistic/spelldta.hxx b/include/linguistic/spelldta.hxx
index 5475afc9c5c3..2e3e6c08aadc 100644
--- a/include/linguistic/spelldta.hxx
+++ b/include/linguistic/spelldta.hxx
@@ -37,14 +37,14 @@ namespace com { namespace sun { namespace star {
namespace linguistic
{
-css::uno::Sequence< OUString >
+std::vector< OUString >
MergeProposalSeqs(
- css::uno::Sequence< OUString > &rAlt1,
- css::uno::Sequence< OUString > &rAlt2,
+ std::vector< OUString > &rAlt1,
+ std::vector< OUString > &rAlt2,
bool bAllowDuplicates );
void SeqRemoveNegEntries(
- css::uno::Sequence< OUString > &rSeq,
+ std::vector< OUString > &rSeq,
css::uno::Reference< css::linguistic2::XSearchableDictionaryList > &rxDicList,
sal_Int16 nLanguage );