summaryrefslogtreecommitdiffstats
path: root/src/gui/widgets/ScrollBox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/ScrollBox.cpp')
-rw-r--r--src/gui/widgets/ScrollBox.cpp6
1 files changed, 3 insertions, 3 deletions
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();