summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-09-25 13:29:19 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-09-26 03:04:22 +0200
commitd6d04400095c2663ff5e1f58018d76df78121704 (patch)
treea8a93fb7f83557539b02b26d35217207f187d612
parentb722989678429fbdb353737660a19ecd1db28d89 (diff)
loplugin:constmethod in comphelper..desktop
Change-Id: I3dbdc72b05c9d01cce279c783c60d191900f8b7c Reviewed-on: https://gerrit.libreoffice.org/79538 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r--comphelper/source/misc/asyncquithandler.cxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui_extlistbox.hxx4
-rw-r--r--desktop/source/deployment/manager/dp_properties.cxx4
-rw-r--r--desktop/source/deployment/manager/dp_properties.hxx4
-rw-r--r--desktop/source/deployment/registry/executable/dp_executable.cxx4
-rw-r--r--desktop/source/deployment/registry/package/dp_package.cxx4
-rw-r--r--desktop/source/deployment/registry/sfwk/dp_parceldesc.hxx4
-rw-r--r--include/comphelper/asyncquithandler.hxx2
8 files changed, 14 insertions, 14 deletions
diff --git a/comphelper/source/misc/asyncquithandler.cxx b/comphelper/source/misc/asyncquithandler.cxx
index 282bbaea427e..fd53cbd9bf4b 100644
--- a/comphelper/source/misc/asyncquithandler.cxx
+++ b/comphelper/source/misc/asyncquithandler.cxx
@@ -44,7 +44,7 @@ void AsyncQuitHandler::QuitApplication()
void AsyncQuitHandler::SetForceQuit() { mbForceQuit = true; }
-bool AsyncQuitHandler::IsForceQuit() { return mbForceQuit; }
+bool AsyncQuitHandler::IsForceQuit() const { return mbForceQuit; }
IMPL_STATIC_LINK_NOARG(AsyncQuitHandler, OnAsyncQuit, void*, void) { QuitApplication(); }
diff --git a/desktop/source/deployment/gui/dp_gui_extlistbox.hxx b/desktop/source/deployment/gui/dp_gui_extlistbox.hxx
index 5cb6edf744cc..7621807f1ef6 100644
--- a/desktop/source/deployment/gui/dp_gui_extlistbox.hxx
+++ b/desktop/source/deployment/gui/dp_gui_extlistbox.hxx
@@ -173,9 +173,9 @@ public:
virtual void SetDrawingArea(weld::DrawingArea* pDrawingArea) override;
TEntry_Impl const & GetEntryData( long nPos ) { return m_vEntries[ nPos ]; }
- long GetEntryCount() { return static_cast<long>(m_vEntries.size()); }
+ long GetEntryCount() const { return static_cast<long>(m_vEntries.size()); }
tools::Rectangle GetEntryRect( const long nPos ) const;
- bool HasActive() { return m_bHasActive; }
+ bool HasActive() const { return m_bHasActive; }
long PointToPos( const Point& rPos );
virtual void RecalcAll();
void RemoveUnlocked();
diff --git a/desktop/source/deployment/manager/dp_properties.cxx b/desktop/source/deployment/manager/dp_properties.cxx
index 3ba2e3e9e89f..46535e0ee0e1 100644
--- a/desktop/source/deployment/manager/dp_properties.cxx
+++ b/desktop/source/deployment/manager/dp_properties.cxx
@@ -122,7 +122,7 @@ void ExtensionProperties::write()
contentProps.writeStream( xData, true /* replace existing */ );
}
-bool ExtensionProperties::isSuppressedLicense()
+bool ExtensionProperties::isSuppressedLicense() const
{
bool ret = false;
if (m_prop_suppress_license)
@@ -133,7 +133,7 @@ bool ExtensionProperties::isSuppressedLicense()
return ret;
}
-bool ExtensionProperties::isExtensionUpdate()
+bool ExtensionProperties::isExtensionUpdate() const
{
bool ret = false;
if (m_prop_extension_update)
diff --git a/desktop/source/deployment/manager/dp_properties.hxx b/desktop/source/deployment/manager/dp_properties.hxx
index 4bc3309c3e36..f6edd8476629 100644
--- a/desktop/source/deployment/manager/dp_properties.hxx
+++ b/desktop/source/deployment/manager/dp_properties.hxx
@@ -51,9 +51,9 @@ public:
void write();
- bool isSuppressedLicense();
+ bool isSuppressedLicense() const;
- bool isExtensionUpdate();
+ bool isExtensionUpdate() const;
};
}
diff --git a/desktop/source/deployment/registry/executable/dp_executable.cxx b/desktop/source/deployment/registry/executable/dp_executable.cxx
index 95ba4e96e222..0ef1d3e2d0a3 100644
--- a/desktop/source/deployment/registry/executable/dp_executable.cxx
+++ b/desktop/source/deployment/registry/executable/dp_executable.cxx
@@ -61,7 +61,7 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
Reference<XCommandEnvironment> const & xCmdEnv ) override;
bool getFileAttributes(sal_uInt64& out_Attributes);
- bool isUrlTargetInExtension();
+ bool isUrlTargetInExtension() const;
public:
ExecutablePackageImpl(
@@ -260,7 +260,7 @@ void BackendImpl::ExecutablePackageImpl::processPackage_(
//But we can check if we are within $UNO_USER_PACKAGES_CACHE etc.
//Done for security reasons. For example an extension manifest could contain a path to
//an executable outside the extension.
-bool BackendImpl::ExecutablePackageImpl::isUrlTargetInExtension()
+bool BackendImpl::ExecutablePackageImpl::isUrlTargetInExtension() const
{
bool bSuccess = false;
OUString sExtensionDir;
diff --git a/desktop/source/deployment/registry/package/dp_package.cxx b/desktop/source/deployment/registry/package/dp_package.cxx
index 38f809c6a40f..712742ed93c5 100644
--- a/desktop/source/deployment/registry/package/dp_package.cxx
+++ b/desktop/source/deployment/registry/package/dp_package.cxx
@@ -148,7 +148,7 @@ class BackendImpl : public ImplBaseT
const Reference< ucb::XCommandEnvironment >& xCmdEnv,
const OUString& licenseUrl);
- DescriptionInfoset getDescriptionInfoset();
+ DescriptionInfoset getDescriptionInfoset() const;
// Package
virtual beans::Optional< beans::Ambiguous<sal_Bool> > isRegistered_(
@@ -561,7 +561,7 @@ OUString BackendImpl::PackageImpl::getTextFromURL(
}
-DescriptionInfoset BackendImpl::PackageImpl::getDescriptionInfoset()
+DescriptionInfoset BackendImpl::PackageImpl::getDescriptionInfoset() const
{
return dp_misc::getDescriptionInfoset(m_url_expanded);
}
diff --git a/desktop/source/deployment/registry/sfwk/dp_parceldesc.hxx b/desktop/source/deployment/registry/sfwk/dp_parceldesc.hxx
index 620e01b24c3c..001e8b2e156f 100644
--- a/desktop/source/deployment/registry/sfwk/dp_parceldesc.hxx
+++ b/desktop/source/deployment/registry/sfwk/dp_parceldesc.hxx
@@ -45,8 +45,8 @@ private:
sal_Int32 skipIndex;
public:
ParcelDescDocHandler():m_bIsParsed( false ), skipIndex( 0 ){}
- const OUString& getParcelLanguage() { return m_sLang; }
- bool isParsed() { return m_bIsParsed; }
+ const OUString& getParcelLanguage() const { return m_sLang; }
+ bool isParsed() const { return m_bIsParsed; }
// XDocumentHandler
virtual void SAL_CALL startDocument() override;
diff --git a/include/comphelper/asyncquithandler.hxx b/include/comphelper/asyncquithandler.hxx
index 5e4f073e4b61..9d994d177592 100644
--- a/include/comphelper/asyncquithandler.hxx
+++ b/include/comphelper/asyncquithandler.hxx
@@ -42,7 +42,7 @@ public:
// client itself that explicitly requests a quit (see VbaApplicationBase::Quit()), we do quit.
// The flag can only be set to true, not back to false.
void SetForceQuit();
- bool IsForceQuit();
+ bool IsForceQuit() const;
DECL_STATIC_LINK(AsyncQuitHandler, OnAsyncQuit, void*, void);
};