aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2022-09-25 18:55:41 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2022-10-02 12:39:26 +0200
commit03a692c88fd086d8bb2ad3fa4dbddb898bfd9bff (patch)
treebbad5126993fe4b504170713b255c3e634c45743 /src
parent0ba06d371cd775ce26806bca958ef1d2b95a12ac (diff)
downloadayatana-indicator-display-03a692c88fd086d8bb2ad3fa4dbddb898bfd9bff.tar.gz
ayatana-indicator-display-03a692c88fd086d8bb2ad3fa4dbddb898bfd9bff.tar.bz2
ayatana-indicator-display-03a692c88fd086d8bb2ad3fa4dbddb898bfd9bff.zip
Fix failing cppcheck
fixes https://github.com/AyatanaIndicators/ayatana-indicator-display/issues/58
Diffstat (limited to 'src')
-rw-r--r--src/exporter.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/exporter.cpp b/src/exporter.cpp
index b3d586b..2db9a01 100644
--- a/src/exporter.cpp
+++ b/src/exporter.cpp
@@ -1,5 +1,6 @@
/*
* Copyright 2014 Canonical Ltd.
+ * Copyright 2022 Robert Tari
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
@@ -15,6 +16,7 @@
*
* Authors:
* Charles Kerr <charles.kerr@canonical.com>
+ * Robert Tari <robert@tari.in>
*/
#include <src/exporter.h>
@@ -81,7 +83,7 @@ private:
export_actions(m_indicator);
- for (auto& profile : m_indicator->profiles())
+ for (const auto& profile : m_indicator->profiles())
export_profile(m_indicator, profile);
}