From 67efdc4fefe869ed0490f9dca3996ca5062a0491 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Thu, 9 May 2019 01:03:20 +0200 Subject: [PATCH] s/Q_DECL_OVERRIDE/override --- core/backends/bluetooth/bluetoothpairinghandler.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/backends/bluetooth/bluetoothpairinghandler.h b/core/backends/bluetooth/bluetoothpairinghandler.h index 6b9e353c7..62afbf6ef 100644 --- a/core/backends/bluetooth/bluetoothpairinghandler.h +++ b/core/backends/bluetooth/bluetoothpairinghandler.h @@ -43,11 +43,11 @@ public: BluetoothPairingHandler(DeviceLink* deviceLink); virtual ~BluetoothPairingHandler() { } - virtual void packetReceived(const NetworkPacket& np) Q_DECL_OVERRIDE; - virtual bool requestPairing() Q_DECL_OVERRIDE; - virtual bool acceptPairing() Q_DECL_OVERRIDE; - virtual void rejectPairing() Q_DECL_OVERRIDE; - virtual void unpair() Q_DECL_OVERRIDE; + void packetReceived(const NetworkPacket& np) override; + bool requestPairing() override; + bool acceptPairing() override; + void rejectPairing() override; + void unpair() override; bool isPairRequested() const { return m_status == Requested; } bool isPaired() const { return m_status == Paired; }