Skip to content

Commit

Permalink
Mark some unused parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
pvuorela committed May 8, 2018
1 parent 961ee6e commit efca62d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/config.cpp
Expand Up @@ -90,6 +90,8 @@ bool ConfigReader::startElement(const QString& ns, const QString& name,
const QString& qname,
const QXmlAttributes &atts)
{
Q_UNUSED(ns)

switch (state) {
case inLimbo:
if (qname != "actions")
Expand Down Expand Up @@ -139,6 +141,9 @@ bool ConfigReader::characters(const QString& chars)
bool ConfigReader::endElement(const QString& nsuri, const QString& name,
const QString& qname)
{
Q_UNUSED(nsuri)
Q_UNUSED(name)

switch (state) {
case inActions:
if (qname == "actions")
Expand Down
2 changes: 2 additions & 0 deletions src/service.cpp
Expand Up @@ -98,6 +98,8 @@ ServiceResolver::~ServiceResolver()
/// A slot connected to the serviceAvailable signal from Meego service mapper.
void ServiceResolver::onServiceAvailable(QString implementor, QString interface)
{
Q_UNUSED(implementor)

// Now a service become available for an interface, but we cannot know
// wheter it is now the *preferred* implementor or not. We cannot do
// anything else but clear our understanging about who's the preferred
Expand Down

0 comments on commit efca62d

Please sign in to comment.