From 1ec7b1dadc8d1668fb89cf06b32dfc52c18db4d6 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 4 Nov 2023 23:32:44 +0900 Subject: Replace Qt with TQt Signed-off-by: Michele Calgaro --- src/gui/widgets/ScrollBox.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/gui/widgets/ScrollBox.cpp') diff --git a/src/gui/widgets/ScrollBox.cpp b/src/gui/widgets/ScrollBox.cpp index c7e3efd..5f07495 100644 --- a/src/gui/widgets/ScrollBox.cpp +++ b/src/gui/widgets/ScrollBox.cpp @@ -51,15 +51,15 @@ ScrollBox::ScrollBox(TQWidget* parent, SizeMode sizeMode, const char* name) : void ScrollBox::mousePressEvent(TQMouseEvent* e) { m_mouse = e->pos(); - if (e->button() == Qt::RightButton) + if (e->button() == TQt::RightButton) emit button3Pressed(); - if (e->button() == Qt::MidButton) + if (e->button() == TQt::MidButton) emit button2Pressed(); } void ScrollBox::mouseMoveEvent(TQMouseEvent* e) { - if (e->state() != Qt::LeftButton) + if (e->state() != TQt::LeftButton) return ; int dx = (e->pos().x() - m_mouse.x()) * m_pagesize.width() / width(); -- cgit v1.2.3