desktop/source/deployment/inc/dp_descriptioninfoset.hxx   |    2 +-
 desktop/source/deployment/misc/dp_descriptioninfoset.cxx  |    2 +-
 desktop/source/deployment/registry/package/dp_package.cxx |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit eb0774032011e45bf97f3102bf2005b4ae85f07d
Author: Douglas Mencken <dougmenc...@gmail.com>
Date:   Mon Mar 7 00:02:38 2016 -0500

    fix typo getSupportedPlaforms -> getSupportedPlatforms
    
    Change-Id: I6adecfc0475b3c93a538874515be478efb733fae
    Reviewed-on: https://gerrit.libreoffice.org/22968
    Tested-by: Jenkins <c...@libreoffice.org>
    Reviewed-by: Noel Grandin <noelgran...@gmail.com>

diff --git a/desktop/source/deployment/inc/dp_descriptioninfoset.hxx 
b/desktop/source/deployment/inc/dp_descriptioninfoset.hxx
index 66460bc..a54bbdb 100644
--- a/desktop/source/deployment/inc/dp_descriptioninfoset.hxx
+++ b/desktop/source/deployment/inc/dp_descriptioninfoset.hxx
@@ -108,7 +108,7 @@ public:
         The value attribute can contain various platform tokens. They must be 
separated by
         commas.Each token will be stripped from leading and trailing white 
space (trim()).
     */
-    css::uno::Sequence< OUString > getSupportedPlaforms() const;
+    css::uno::Sequence< OUString > getSupportedPlatforms() const;
 
     /**
         Returns the localized publisher name and the corresponding URL.
diff --git a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx 
b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
index 38cefc4..021de7a 100644
--- a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
+++ b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
@@ -462,7 +462,7 @@ OUString DescriptionInfoset::getVersion() const
     return getNodeValueFromExpression( "desc:version/@value" );
 }
 
-css::uno::Sequence< OUString > DescriptionInfoset::getSupportedPlaforms() const
+css::uno::Sequence< OUString > DescriptionInfoset::getSupportedPlatforms() 
const
 {
     //When there is no description.xml then we assume that we support all 
platforms
     if (! m_element.is())
diff --git a/desktop/source/deployment/registry/package/dp_package.cxx 
b/desktop/source/deployment/registry/package/dp_package.cxx
index 51fc2ea6..58b302e 100644
--- a/desktop/source/deployment/registry/package/dp_package.cxx
+++ b/desktop/source/deployment/registry/package/dp_package.cxx
@@ -601,7 +601,7 @@ bool BackendImpl::PackageImpl::checkPlatform(
 {
     bool ret = false;
     DescriptionInfoset info(getDescriptionInfoset());
-    Sequence<OUString> platforms(info.getSupportedPlaforms());
+    Sequence<OUString> platforms(info.getSupportedPlatforms());
     if (hasValidPlatform(platforms))
     {
         ret = true;
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to