Skip to content

Commit 9d5846e

Browse files
committed
clazy: Fix up clazy exclude statements.
1 parent 6e52967 commit 9d5846e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mythtv/libs/libmythbase/mythcorecontext.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1891,7 +1891,7 @@ void MythCoreContext::WaitUntilSignals(std::vector<CoreWaitInfo> & sigs) const
18911891
LOG(VB_GENERAL, LOG_DEBUG, LOC +
18921892
QString("Waiting for signal %1")
18931893
.arg(s.name));
1894-
connect(this, s.fn, &eventLoop, &QEventLoop::quit);// clazy:exclude connect-non-signal
1894+
connect(this, s.fn, &eventLoop, &QEventLoop::quit);// clazy:exclude=connect-non-signal
18951895
}
18961896

18971897
eventLoop.exec(QEventLoop::ExcludeUserInputEvents | QEventLoop::ExcludeSocketNotifiers);

mythtv/libs/libmythbase/programinfo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1758,7 +1758,7 @@ void ProgramInfo::ToMap(InfoMap &progMap,
17581758
{
17591759
// This relies upon the translation established in the
17601760
// definition of StorageGroup::kSpecialGroups.
1761-
// clazy:exclude tr-non-literal
1761+
// clazy:exclude=tr-non-literal
17621762
progMap["storagegroup"] = QObject::tr(m_storageGroup.toUtf8().constData());
17631763
}
17641764
else

0 commit comments

Comments
 (0)