summaryrefslogtreecommitdiffstats
path: root/konversation/src/ircview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/ircview.cpp')
-rw-r--r--konversation/src/ircview.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/konversation/src/ircview.cpp b/konversation/src/ircview.cpp
index 89dca72..2275f85 100644
--- a/konversation/src/ircview.cpp
+++ b/konversation/src/ircview.cpp
@@ -1190,7 +1190,7 @@ void IRCView::paintEvent(TQPaintEvent* event)
void IRCView::contentsMouseReleaseEvent(TQMouseEvent *ev)
{
- if (ev->button() == Qt::MidButton)
+ if (ev->button() == TQt::MidButton)
{
if(m_copyUrlMenu)
{
@@ -1204,11 +1204,11 @@ void IRCView::contentsMouseReleaseEvent(TQMouseEvent *ev)
}
}
- if (ev->button() == Qt::LeftButton)
+ if (ev->button() == TQt::LeftButton)
{
if (m_mousePressed)
{
- if (ev->state() == (Qt::LeftButton|TQt::ShiftButton))
+ if (ev->state() == (TQt::LeftButton|TQt::ShiftButton))
saveLinkAs(m_highlightedURL);
else
openLink(m_highlightedURL);
@@ -1223,7 +1223,7 @@ void IRCView::contentsMouseReleaseEvent(TQMouseEvent *ev)
void IRCView::contentsMousePressEvent(TQMouseEvent* ev)
{
- if (ev->button() == Qt::LeftButton)
+ if (ev->button() == TQt::LeftButton)
{
m_urlToDrag = m_highlightedURL;