From ae841861b206260476a375db36cc977f4d5a8ea0 Mon Sep 17 00:00:00 2001 From: Stefan Persson Date: Thu, 16 May 2013 16:16:53 +0200 Subject: [PATCH] Added missing space in comment, according to Google style guidelines "whitespace/comments" --- telldus-core/service/ProtocolHasta.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/telldus-core/service/ProtocolHasta.cpp b/telldus-core/service/ProtocolHasta.cpp index eb4d5017..4c2e7ba2 100644 --- a/telldus-core/service/ProtocolHasta.cpp +++ b/telldus-core/service/ProtocolHasta.cpp @@ -161,7 +161,7 @@ std::string ProtocolHasta::decodeData(const ControllerMessage& dataMsg) { method = allData & 0xF; allData >>= 4; if(TelldusCore::comparei(dataMsg.model(), L"selflearning")) { - //version1 + // version1 house = allData & 0xFFFF; house = ((house << 8) | (house >> 8)) & 0xFFFF; model = "selflearning"; @@ -179,14 +179,14 @@ std::string ProtocolHasta::decodeData(const ControllerMessage& dataMsg) { } } else{ - //version2 + // version2 house = allData & 0xFFFF; model = "selflearningv2"; if(method == 12){ methodstring = "up"; } - else if(method == 1 || method == 8){ //is method 8 correct? + else if(method == 1 || method == 8){ // is method 8 correct? methodstring = "down"; } else if(method == 5){