From ed2b7b895495c158ff33985032c18aed212da0ec Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Thu, 5 Jul 2012 13:34:53 +0200 Subject: [PATCH] * Fixed clash between model & proxymodel user-roles. --- src/libtomahawk/playlist/PlayableProxyModel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/playlist/PlayableProxyModel.h b/src/libtomahawk/playlist/PlayableProxyModel.h index 9171b1516..84f1d260d 100644 --- a/src/libtomahawk/playlist/PlayableProxyModel.h +++ b/src/libtomahawk/playlist/PlayableProxyModel.h @@ -36,7 +36,7 @@ public: { Detailed = 0, Short = 1, ShortWithAvatars = 2, Large = 3, Collection = 4 }; enum PlayableProxyModelRole - { StyleRole = Qt::UserRole + 1 }; + { StyleRole = Qt::UserRole + 100 }; explicit PlayableProxyModel ( QObject* parent = 0 ); virtual ~PlayableProxyModel() {}