summaryrefslogtreecommitdiffstats
path: root/kmymoney2/widgets/sortoptionlistitem.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmymoney2/widgets/sortoptionlistitem.h')
-rw-r--r--kmymoney2/widgets/sortoptionlistitem.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kmymoney2/widgets/sortoptionlistitem.h b/kmymoney2/widgets/sortoptionlistitem.h
index 9276b16..39fc608 100644
--- a/kmymoney2/widgets/sortoptionlistitem.h
+++ b/kmymoney2/widgets/sortoptionlistitem.h
@@ -346,7 +346,7 @@ static const char * sortDescendingXpm[] = {
" e.f.g.h.i.j.k.l. ",
" m.n. "};
-class SortOptionListItem : public KListViewItem
+class SortOptionListItem : public TDEListViewItem
{
public:
SortOptionListItem(TQListView* parent, TQListViewItem* after, const TQString& txt, int direction);
@@ -363,7 +363,7 @@ private:
};
SortOptionListItem::SortOptionListItem(TQListView* parent, TQListViewItem* after, const TQString& txt, int direction) :
- KListViewItem(parent, after, txt)
+ TDEListViewItem(parent, after, txt)
{
m_direction = (direction >= 0) ? 1 : -1;
setPixmap();
@@ -372,9 +372,9 @@ SortOptionListItem::SortOptionListItem(TQListView* parent, TQListViewItem* after
void SortOptionListItem::setPixmap(void)
{
if(m_direction > 0)
- KListViewItem::setPixmap(0, TQPixmap(&sortAscendingXpm[0]));
+ TDEListViewItem::setPixmap(0, TQPixmap(&sortAscendingXpm[0]));
else
- KListViewItem::setPixmap(0, TQPixmap(&sortDescendingXpm[0]));
+ TDEListViewItem::setPixmap(0, TQPixmap(&sortDescendingXpm[0]));
}
void SortOptionListItem::toggleDirection(void)