desktop/source/deployment/misc/dp_dependencies.cxx |    5 +++++
 1 file changed, 5 insertions(+)

New commits:
commit cc8b02a4f9b484590bda45059336053095be90f7
Author:     Jan Holesovsky <ke...@collabora.com>
AuthorDate: Fri Feb 7 15:43:50 2020 +0100
Commit:     Jan Holesovsky <ke...@collabora.com>
CommitDate: Mon Feb 10 11:25:31 2020 +0100

    android hunspell: Hardcode the ReferenceOOoMajorMinor for version check.
    
    From some reason it fails to be read from the versionrc; and I'm not
    really eager to debug why...
    
    Without this, only the dictionaries that do not mention the
    OpenOffice.org-minimal-version are registered; which would be just 2 of
    them.
    
    Change-Id: I9fe0bc138eadbdcbe5e0d8231e7e90ef268163bc
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88219
    Tested-by: Jan Holesovsky <ke...@collabora.com>
    Reviewed-by: Jan Holesovsky <ke...@collabora.com>

diff --git a/desktop/source/deployment/misc/dp_dependencies.cxx 
b/desktop/source/deployment/misc/dp_dependencies.cxx
index 49b64780ec04..c5507d9ba659 100644
--- a/desktop/source/deployment/misc/dp_dependencies.cxx
+++ b/desktop/source/deployment/misc/dp_dependencies.cxx
@@ -61,10 +61,15 @@ OUString getLibreOfficeMajorMinorMicro() {
 }
 
 OUString getReferenceOpenOfficeOrgMajorMinor() {
+#ifdef ANDROID
+    // just hardcode the version
+    OUString v("4.1");
+#else
     OUString v(
             "${$BRAND_BASE_DIR/" LIBO_ETC_FOLDER "/" SAL_CONFIGFILE("version")
             ":Version:ReferenceOOoMajorMinor}");
     rtl::Bootstrap::expandMacros(v); //TODO: check for failure
+#endif
     return v;
 }
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to