diff options
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/deployment/inc/dp_descriptioninfoset.hxx | 4 | ||||
-rw-r--r-- | desktop/source/deployment/misc/dp_descriptioninfoset.cxx | 2 |
2 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 a54bbdb8cfcd..f3d7281a3892 100644 --- a/desktop/source/deployment/inc/dp_descriptioninfoset.hxx +++ b/desktop/source/deployment/inc/dp_descriptioninfoset.hxx @@ -260,9 +260,9 @@ private: /** Helper method to compare the versions with the current version */ - SAL_DLLPRIVATE bool + SAL_DLLPRIVATE static bool checkBlacklistVersion(const OUString& currentversion, - css::uno::Sequence< OUString > const & versions) const; + css::uno::Sequence< OUString > const & versions); css::uno::Reference< css::uno::XComponentContext > m_context; css::uno::Reference< css::xml::dom::XNode > m_element; diff --git a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx index 8fc9ed308fb8..732b026d04c3 100644 --- a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx +++ b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx @@ -447,7 +447,7 @@ void DescriptionInfoset::checkBlacklist() const bool DescriptionInfoset::checkBlacklistVersion( const OUString& currentversion, - css::uno::Sequence< OUString > const & versions) const + css::uno::Sequence< OUString > const & versions) { sal_Int32 nLen = versions.getLength(); for (sal_Int32 i=0; i<nLen; i++) { |