summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/eventlist/EventViewItem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/editors/eventlist/EventViewItem.cpp')
-rw-r--r--src/gui/editors/eventlist/EventViewItem.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/editors/eventlist/EventViewItem.cpp b/src/gui/editors/eventlist/EventViewItem.cpp
index 4435a2b..b5f4d38 100644
--- a/src/gui/editors/eventlist/EventViewItem.cpp
+++ b/src/gui/editors/eventlist/EventViewItem.cpp
@@ -30,13 +30,13 @@ namespace Rosegarden
// Reimplementation of sort for numeric columns - taking the
// right hand argument from the left is equivalent to the
-// the QString compare().
+// the TQString compare().
//
int
-EventViewItem::compare(QListViewItem *i, int col, bool ascending) const
+EventViewItem::compare(TQListViewItem *i, int col, bool ascending) const
{
EventViewItem *ei = dynamic_cast<EventViewItem *>(i);
- if (!ei) return QListViewItem::compare(i, col, ascending);
+ if (!ei) return TQListViewItem::compare(i, col, ascending);
if (col == 0) { // time
Rosegarden::Event &e1 = *m_event;