]> git.sur5r.net Git - minitube/commitdiff
Revert columnCount to 4 (don't know why, 1 breaks drag and drop)
authorFlavio <flavio@odisseo.local>
Wed, 9 Jan 2013 20:45:20 +0000 (21:45 +0100)
committerFlavio <flavio@odisseo.local>
Wed, 9 Jan 2013 20:45:20 +0000 (21:45 +0100)
src/playlistmodel.h

index 1a1be5cfb23b9f262c0d7316af69a595a640eced..ccaee5abde42aac6853db0b03ad6e34cd2f92936 100644 (file)
@@ -31,7 +31,7 @@ public:
     PlaylistModel(QWidget *parent = 0);
 
     int rowCount(const QModelIndex &parent = QModelIndex()) const;
-    int columnCount( const QModelIndex& parent = QModelIndex() ) const { Q_UNUSED( parent ); return 1; }
+    int columnCount( const QModelIndex& parent = QModelIndex() ) const { Q_UNUSED( parent ); return 4; }
     QVariant data(const QModelIndex &index, int role) const;
     bool removeRows(int position, int rows, const QModelIndex &parent);
 
@@ -55,6 +55,7 @@ public:
 
     Video* videoAt( int row ) const;
     Video* activeVideo() const;
+    bool hasVideo(Video *video) const { return videos.contains(video); }
 
     VideoSource* getVideoSource() { return videoSource; }
     void setVideoSource(VideoSource *videoSource);