summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-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 );