[Libreoffice-commits] core.git: desktop/source
Tor Lillqvist
tml at collabora.com
Wed Dec 7 22:49:46 UTC 2016
desktop/source/deployment/manager/dp_activepackages.cxx | 5 +++++
1 file changed, 5 insertions(+)
New commits:
commit 55df4fa5d5f1ec6c402ab68e51e3ca3af6e5d2ee
Author: Tor Lillqvist <tml at collabora.com>
Date: Thu Dec 8 00:46:56 2016 +0200
loplugin:staticmethods
Change-Id: I90bb57370853c7606304c721e294999626c2af01
diff --git a/desktop/source/deployment/manager/dp_activepackages.cxx b/desktop/source/deployment/manager/dp_activepackages.cxx
index 99cc5f8..c9234ae 100644
--- a/desktop/source/deployment/manager/dp_activepackages.cxx
+++ b/desktop/source/deployment/manager/dp_activepackages.cxx
@@ -155,6 +155,7 @@ bool ActivePackages::get(
(void) data;
(void) id;
(void) fileName;
+ (void) this;
return false;
#endif
}
@@ -182,6 +183,8 @@ ActivePackages::Entries ActivePackages::getEntries() const {
decodeOldData(fn, i->second)));
}
}
+#else
+ (void) this;
#endif
return es;
}
@@ -203,6 +206,7 @@ void ActivePackages::put(OUString const & id, Data const & data) {
#else
(void) id;
(void) data;
+ (void) this;
#endif
}
@@ -214,6 +218,7 @@ void ActivePackages::erase(
#else
(void) id;
(void) fileName;
+ (void) this;
#endif
}
More information about the Libreoffice-commits
mailing list