1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-11 16:44:05 +02:00

Move implementation out of the header

This commit is contained in:
Uwe L. Korn
2013-07-16 12:58:59 +02:00
parent 95031dddce
commit bc24148e85
2 changed files with 6 additions and 3 deletions

View File

@@ -55,6 +55,11 @@ PlaylistDelegate::sizeHint( const QStyleOptionViewItem& option, const QModelInde
}
PlaylistDelegate::PlaylistDelegate()
{
}
void
PlaylistDelegate::paint( QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index ) const
{

View File

@@ -35,9 +35,7 @@ class TOMAHAWK_WIDGETS_EXPORT PlaylistDelegate : public QStyledItemDelegate
Q_OBJECT
public:
PlaylistDelegate()
{
}
PlaylistDelegate();
protected:
void paint( QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index ) const;