From a1586128353ee34ab119f8bb7550756e0fcf3f3d Mon Sep 17 00:00:00 2001 From: Markus Zehnder Date: Mon, 11 Jan 2021 20:46:45 +0100 Subject: [PATCH] chore: Remove cpplint workaround for Qt signals The new cpplint version 1.5.2 finally supports Qt signal definitions. - Removed all `// NOLINT` markers Relates to YIO-Remote/remote-software#521 --- src/bangolufsen.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bangolufsen.h b/src/bangolufsen.h index b70f327..8e1f399 100755 --- a/src/bangolufsen.h +++ b/src/bangolufsen.h @@ -71,7 +71,7 @@ class BangOlufsen : public Integration { signals: void requestReady(const QVariantMap& obj, const QString& url); - public slots: // NOLINT open issue: https://github.com/cpplint/cpplint/pull/99 + public slots: void connect() override; void disconnect() override; void enterStandby() override; @@ -124,6 +124,6 @@ class BangOlufsen : public Integration { // void joinExperience(); // void leaveExperience(); - private slots: // NOLINT open issue: https://github.com/cpplint/cpplint/pull/99 + private slots: void onPollingTimerTimeout(); };