1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Apply atomic settings to channel Rx plugins part 2. Part of #1329

This commit is contained in:
f4exb
2026-02-01 00:49:36 +01:00
parent 103e86c80b
commit 2a46208d37
50 changed files with 738 additions and 866 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
#include "stringlist.h"
bool StringListUtil::containsAll(const QStringList &haystack, const QStringList &needles)
static bool StringListUtil::containsAll(const QStringList &haystack, const QStringList &needles)
{
for (const auto &s : needles) {
if (!haystack.contains(s)) // optionally add Qt::CaseSensitivity
@@ -9,7 +9,7 @@ bool StringListUtil::containsAll(const QStringList &haystack, const QStringList
return true;
}
bool StringListUtil::containsAny(const QStringList &haystack, const QStringList &needles)
static bool StringListUtil::containsAny(const QStringList &haystack, const QStringList &needles)
{
for (const auto &s : needles) {
if (haystack.contains(s)) // optionally add Qt::CaseSensitivity