1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-12 09:04:33 +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 void
PlaylistDelegate::paint( QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index ) const 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 Q_OBJECT
public: public:
PlaylistDelegate() PlaylistDelegate();
{
}
protected: protected:
void paint( QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index ) const; void paint( QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index ) const;