summaryrefslogtreecommitdiffstats
path: root/cervisia/loglist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cervisia/loglist.cpp')
-rw-r--r--cervisia/loglist.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cervisia/loglist.cpp b/cervisia/loglist.cpp
index 47bd4115..a5986f7e 100644
--- a/cervisia/loglist.cpp
+++ b/cervisia/loglist.cpp
@@ -169,7 +169,7 @@ void LogListView::contentsMousePressEvent(TQMouseEvent *e)
// Retrieve revision
const TQString revision = selItem->text(LogListViewItem::Revision);
- if ( e->button() == Qt::LeftButton )
+ if ( e->button() == TQt::LeftButton )
{
// If the control key was pressed, then we change revision B not A
if( e->state() & ControlButton )
@@ -177,7 +177,7 @@ void LogListView::contentsMousePressEvent(TQMouseEvent *e)
else
emit revisionClicked(revision, false);
}
- else if ( e->button() == Qt::MidButton )
+ else if ( e->button() == TQt::MidButton )
emit revisionClicked(revision, true);
}