From d4740dca64ba96cb9eea191df29ba41b66b8d490 Mon Sep 17 00:00:00 2001 From: "nikwen.developer@gmail.com" Date: Mon, 14 Apr 2014 18:41:28 +0000 Subject: [PATCH] Removed Q_INVOKABLE from AlbumsModel::songs() --- models/albumsmodel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/albumsmodel.h b/models/albumsmodel.h index 26cf467b6..eb838aa61 100644 --- a/models/albumsmodel.h +++ b/models/albumsmodel.h @@ -127,7 +127,7 @@ public: QVariant data(const QModelIndex &, int) const; Qt::ItemFlags flags(const QModelIndex &index) const; QStringList filenames(const QModelIndexList &indexes, bool allowPlaylists=false) const; - Q_INVOKABLE QList songs(const QModelIndexList &indexes, bool allowPlaylists=false) const; + QList songs(const QModelIndexList &indexes, bool allowPlaylists=false) const; #ifndef ENABLE_UBUNTU QMimeData * mimeData(const QModelIndexList &indexes) const; #endif