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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user