From afc67225900e0375f32048f4df27f32986704a67 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 6 Nov 2023 11:39:06 +0900 Subject: Replace Qt with TQt Signed-off-by: Michele Calgaro (cherry picked from commit 4243c1195d662a4e6e0971cef547520ece2c6673) --- ksnake/rattler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ksnake/rattler.cpp') diff --git a/ksnake/rattler.cpp b/ksnake/rattler.cpp index 400e9794..d7bc630c 100644 --- a/ksnake/rattler.cpp +++ b/ksnake/rattler.cpp @@ -196,7 +196,7 @@ void Rattler::mousePressEvent( TQMouseEvent *e ) return; uint button = e->button(); - if (button == Qt::RightButton) + if (button == TQt::RightButton) { switch (direction) { @@ -211,7 +211,7 @@ void Rattler::mousePressEvent( TQMouseEvent *e ) } e->accept(); } - else if (button == Qt::LeftButton) + else if (button == TQt::LeftButton) { switch (direction) { -- cgit v1.2.1