summaryrefslogtreecommitdiffstats
path: root/twin-styles/glow/glowbutton.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'twin-styles/glow/glowbutton.cpp')
-rw-r--r--twin-styles/glow/glowbutton.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/twin-styles/glow/glowbutton.cpp b/twin-styles/glow/glowbutton.cpp
index 6dbe2df3..9baa98a3 100644
--- a/twin-styles/glow/glowbutton.cpp
+++ b/twin-styles/glow/glowbutton.cpp
@@ -184,7 +184,7 @@ void GlowButton::mousePressEvent( TQMouseEvent *e )
// without pretending LeftButton, clicking on the button with MidButton
// or RightButton would cause unwanted titlebar action
TQMouseEvent me (e->type(), e->pos(), e->globalPos(),
- (e->button()&m_realizeButtons)?Qt::LeftButton:Qt::NoButton, e->state());
+ (e->button()&m_realizeButtons)?TQt::LeftButton:TQt::NoButton, e->state());
TQButton::mousePressEvent(&me);
}
@@ -199,7 +199,7 @@ void GlowButton::mouseReleaseEvent( TQMouseEvent *e )
m_timerStatus = Stop;
}
TQMouseEvent me (e->type(), e->pos(), e->globalPos(),
- (e->button()&m_realizeButtons)?Qt::LeftButton:Qt::NoButton, e->state());
+ (e->button()&m_realizeButtons)?TQt::LeftButton:TQt::NoButton, e->state());
TQButton::mouseReleaseEvent(&me);
}