From 41a37b469024b7c7f30de3beb60b20e46ebbf951 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 40e38dbb4..27ba7f68d 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() {}