From aa90cd1b88b43e3ab49b7678fd475dfb7005eb4c Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Mon, 12 Nov 2012 11:45:12 +0100 Subject: [PATCH] * Removed obsolete code from TreeItemDelegate. --- src/libtomahawk/playlist/TreeItemDelegate.cpp | 9 --------- src/libtomahawk/playlist/TreeItemDelegate.h | 3 --- 2 files changed, 12 deletions(-) diff --git a/src/libtomahawk/playlist/TreeItemDelegate.cpp b/src/libtomahawk/playlist/TreeItemDelegate.cpp index f79a61066..e06735d15 100644 --- a/src/libtomahawk/playlist/TreeItemDelegate.cpp +++ b/src/libtomahawk/playlist/TreeItemDelegate.cpp @@ -34,7 +34,6 @@ #include "PlayableItem.h" #include "TreeProxyModel.h" -#include "Source.h" #include "TreeView.h" @@ -46,14 +45,6 @@ TreeItemDelegate::TreeItemDelegate( TreeView* parent, TreeProxyModel* proxy ) } -QSize -TreeItemDelegate::sizeHint( const QStyleOptionViewItem& option, const QModelIndex& index ) const -{ - QSize size = QStyledItemDelegate::sizeHint( option, index ); - return size; -} - - void TreeItemDelegate::paint( QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index ) const { diff --git a/src/libtomahawk/playlist/TreeItemDelegate.h b/src/libtomahawk/playlist/TreeItemDelegate.h index 2c4e90f12..84dc69f45 100644 --- a/src/libtomahawk/playlist/TreeItemDelegate.h +++ b/src/libtomahawk/playlist/TreeItemDelegate.h @@ -40,9 +40,6 @@ public: protected: void paint( QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index ) const; - QSize sizeHint( const QStyleOptionViewItem& option, const QModelIndex& index ) const; - -// QWidget* createEditor( QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index ) const; signals: void updateIndex( const QModelIndex& idx );