From 11a01d2f4eae107139e9bb8a50e2cf87bc871edf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=80lex=20Fiestas?= Date: Wed, 24 May 2017 23:26:35 +0200 Subject: [PATCH] Set unique include guard Otherwise the code will not compile if both, lan and bluetooth are enabled. --- core/backends/bluetooth/bluetoothpairinghandler.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/backends/bluetooth/bluetoothpairinghandler.h b/core/backends/bluetooth/bluetoothpairinghandler.h index f716952ec..1695cf959 100644 --- a/core/backends/bluetooth/bluetoothpairinghandler.h +++ b/core/backends/bluetooth/bluetoothpairinghandler.h @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -#ifndef KDECONNECT_LANPAIRINGHANDLER_H -#define KDECONNECT_LANPAIRINGHANDLER_H +#ifndef KDECONNECT_BLUETOOTHPAIRINGHANDLER_H +#define KDECONNECT_BLUETOOTHPAIRINGHANDLER_H #include "device.h" #include "../devicelink.h" @@ -64,4 +64,4 @@ protected: }; -#endif //KDECONNECT_LANPAIRINGHANDLER_H +#endif //KDECONNECT_BLUETOOTHPAIRINGHANDLER_H