diff options
Diffstat (limited to 'juk/playlistitem.h')
-rw-r--r-- | juk/playlistitem.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/juk/playlistitem.h b/juk/playlistitem.h index bcacc4e5..343a3c7c 100644 --- a/juk/playlistitem.h +++ b/juk/playlistitem.h @@ -41,7 +41,7 @@ typedef TQValueList<PlaylistItem *> PlaylistItemList; * Playlist::clearItem(). */ -class PlaylistItem : public KListViewItem +class PlaylistItem : public TDEListViewItem { friend class Playlist; friend class SearchPlaylist; @@ -137,12 +137,12 @@ public: /** * Returns properly casted item below this one. */ - PlaylistItem *itemBelow() { return static_cast<PlaylistItem *>(KListViewItem::itemBelow()); } + PlaylistItem *itemBelow() { return static_cast<PlaylistItem *>(TDEListViewItem::itemBelow()); } /** * Returns properly casted item above this one. */ - PlaylistItem *itemAbove() { return static_cast<PlaylistItem *>(KListViewItem::itemAbove()); } + PlaylistItem *itemAbove() { return static_cast<PlaylistItem *>(TDEListViewItem::itemAbove()); } /** * Returns a reference to the list of the currnetly playing items, with the |