diff --git a/src/libtomahawk-widgets/PlaylistDelegate.cpp b/src/libtomahawk-widgets/PlaylistDelegate.cpp index 0c5e5c879..e878e3e44 100644 --- a/src/libtomahawk-widgets/PlaylistDelegate.cpp +++ b/src/libtomahawk-widgets/PlaylistDelegate.cpp @@ -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 { diff --git a/src/libtomahawk-widgets/PlaylistDelegate.h b/src/libtomahawk-widgets/PlaylistDelegate.h index cf8a3eea2..462a56563 100644 --- a/src/libtomahawk-widgets/PlaylistDelegate.h +++ b/src/libtomahawk-widgets/PlaylistDelegate.h @@ -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;