From d399b46dc1eec8332290b8b2436ee69c458aa36e Mon Sep 17 00:00:00 2001 From: Henry Castro Date: Wed, 3 Nov 2021 10:45:49 -0400 Subject: [PATCH] kit: update comments Change-Id: Iad4844effdb6b984fe33a08d15dc837d6ff3f364 Signed-off-by: Henry Castro --- kit/ChildSession.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kit/ChildSession.cpp b/kit/ChildSession.cpp index 89cb32308..b6783b695 100644 --- a/kit/ChildSession.cpp +++ b/kit/ChildSession.cpp @@ -1546,7 +1546,7 @@ bool ChildSession::mouseEvent(const char* /*buffer*/, int /*length*/, { bool success = true; - // default values for compatibility reasons with older loleaflets + // default values for compatibility reasons with older cools int buttons = 1; // left button int modifier = 0; @@ -1582,11 +1582,11 @@ bool ChildSession::mouseEvent(const char* /*buffer*/, int /*length*/, success = false; } - // compatibility with older loleaflets + // compatibility with older cools if (success && tokens.size() > counter && !getTokenInteger(tokens[counter++], "buttons", buttons)) success = false; - // compatibility with older loleaflets + // compatibility with older cools if (success && tokens.size() > counter && !getTokenInteger(tokens[counter++], "modifier", modifier)) success = false;