Fix issues detected by clazy
Don't use for(:) on Qt containers. It detaches without need.
This commit is contained in:
parent
596e4484f4
commit
bfd698af36
5 changed files with 5 additions and 6 deletions
|
@ -114,7 +114,7 @@ KdeConnectConfig::KdeConnectConfig()
|
|||
QFile cert(certPath);
|
||||
if (cert.exists() && cert.open(QIODevice::ReadOnly)) {
|
||||
|
||||
d->certificate = QSslCertificate::fromPath(certPath).first();
|
||||
d->certificate = QSslCertificate::fromPath(certPath).at(0);
|
||||
|
||||
} else {
|
||||
|
||||
|
|
|
@ -69,7 +69,7 @@ void NotificationsDbusInterface::processPackage(const NetworkPackage& np)
|
|||
id = id.mid(id.indexOf("::") + 2);
|
||||
removeNotification(id);
|
||||
} else if (np.get<bool>("isRequest")) {
|
||||
for (const auto& n: mNotifications) {
|
||||
foreach (const auto& n, mNotifications) {
|
||||
NetworkPackage np(PACKAGE_TYPE_NOTIFICATION_REQUEST);
|
||||
np.set("id", n->internalId());
|
||||
np.set("appName", n->appName());
|
||||
|
|
|
@ -125,7 +125,6 @@ bool PauseMusicPlugin::receivePackage(const NetworkPackage& np)
|
|||
//Calling play does not work for Spotify
|
||||
//mprisInterface->call(QDBus::Block,"Play");
|
||||
//Workaround: Using playpause instead (checking first if it is already playing)
|
||||
QString status = mprisInterface.property("PlaybackStatus").toString();
|
||||
mprisInterface.asyncCall("PlayPause");
|
||||
//End of workaround
|
||||
}
|
||||
|
|
|
@ -96,7 +96,7 @@ void NotificationsListener::loadApplications()
|
|||
{
|
||||
applications.clear();
|
||||
QVariantList list = mPlugin->config()->getList("applications");
|
||||
for (const auto& a: list) {
|
||||
foreach (const auto& a, list) {
|
||||
NotifyingApplication app = a.value<NotifyingApplication>();
|
||||
if (!applications.contains(app.name))
|
||||
applications.insert(app.name, app);
|
||||
|
@ -129,7 +129,7 @@ uint NotificationsListener::Notify(const QString &appName, uint replacesId,
|
|||
applications.insert(app.name, app);
|
||||
// update config:
|
||||
QVariantList list;
|
||||
for (const auto& a: applications.values())
|
||||
foreach (const auto& a, applications)
|
||||
list << QVariant::fromValue<NotifyingApplication>(a);
|
||||
mPlugin->config()->setList("applications", list);
|
||||
//qCDebug(KDECONNECT_PLUGIN_SENDNOTIFICATION) << "Added new application to config:" << app;
|
||||
|
|
|
@ -328,7 +328,7 @@ void TestNotificationListener::testNotify()
|
|||
|
||||
// icon synchronization:
|
||||
int count = 0;
|
||||
for (const auto& iconName: KIconLoader::global()->queryIcons(-KIconLoader::SizeEnormous, KIconLoader::Application)) {
|
||||
foreach (const auto& iconName, KIconLoader::global()->queryIcons(-KIconLoader::SizeEnormous, KIconLoader::Application)) {
|
||||
if (!iconName.endsWith(".png"))
|
||||
continue;
|
||||
if (count++ > 3) // max 3 iterations
|
||||
|
|
Loading…
Reference in a new issue