Skip to content
This repository has been archived by the owner on Jan 28, 2022. It is now read-only.

Commit

Permalink
chore: Remove cpplint workaround for Qt signals
Browse files Browse the repository at this point in the history
The new cpplint version 1.5.2 finally supports Qt signal definitions.

- Removed all `// NOLINT` markers

Relates to YIO-Remote/remote-software#521
  • Loading branch information
zehnm committed Jan 11, 2021
1 parent 6377b04 commit a158612
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bangolufsen.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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();
};

0 comments on commit a158612

Please sign in to comment.