summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Mencken <dougmencken@gmail.com>2016-03-07 00:02:38 -0500
committerNoel Grandin <noelgrandin@gmail.com>2016-03-07 06:25:58 +0000
commiteb0774032011e45bf97f3102bf2005b4ae85f07d (patch)
tree6ac2db9b7de4a7afce82f9b07e3f043082f720d8
parent70f87284c6ce77a49b1fac1431cea206f4b1dfa9 (diff)
fix typo getSupportedPlaforms -> getSupportedPlatforms
Change-Id: I6adecfc0475b3c93a538874515be478efb733fae Reviewed-on: https://gerrit.libreoffice.org/22968 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
-rw-r--r--desktop/source/deployment/inc/dp_descriptioninfoset.hxx2
-rw-r--r--desktop/source/deployment/misc/dp_descriptioninfoset.cxx2
-rw-r--r--desktop/source/deployment/registry/package/dp_package.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/desktop/source/deployment/inc/dp_descriptioninfoset.hxx b/desktop/source/deployment/inc/dp_descriptioninfoset.hxx
index 66460bc87219..a54bbdb8cfcd 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 38cefc4ab793..021de7ae7e0a 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 51fc2ea6bd73..58b302e0ea80 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;