diff options
author | Henry Castro <hcastro@collabora.com> | 2017-10-02 22:49:03 -0400 |
---|---|---|
committer | Henry Castro <hcastro@collabora.com> | 2017-10-03 05:59:54 +0200 |
commit | f50bf3c5225b49b3c6f77f882e35305e5dc5ccd3 (patch) | |
tree | 36c443acfdeeb3aae2bebebd6f366577059cfe12 /include/comphelper | |
parent | 34e8fd7e99489e9f50a512b07c6f3923b358b4d3 (diff) |
lok: use getCommandValues to obtain a list of languages
Change-Id: I4a1f04b9dfe9e3ebbc174380db93c332e958ccfa
Reviewed-on: https://gerrit.libreoffice.org/43060
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Henry Castro <hcastro@collabora.com>
Diffstat (limited to 'include/comphelper')
-rw-r--r-- | include/comphelper/lok.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/comphelper/lok.hxx b/include/comphelper/lok.hxx index 7a293ca70352..22f0c70556c7 100644 --- a/include/comphelper/lok.hxx +++ b/include/comphelper/lok.hxx @@ -10,7 +10,10 @@ #ifndef INCLUDED_COMPHELPER_LOK_HXX #define INCLUDED_COMPHELPER_LOK_HXX +#include <com/sun/star/lang/Locale.hpp> + #include <comphelper/comphelperdllapi.h> +#include <comphelper/sequence.hxx> // Interface between the LibreOfficeKit implementation called by LibreOfficeKit clients and other // LibreOffice code. @@ -68,6 +71,8 @@ COMPHELPER_DLLPUBLIC void statusIndicatorStart(); COMPHELPER_DLLPUBLIC void statusIndicatorSetValue(int percent); COMPHELPER_DLLPUBLIC void statusIndicatorFinish(); +COMPHELPER_DLLPUBLIC css::uno::Sequence< css::lang::Locale > getSpellLanguages(); + } } |