aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/PlayListFormats/xspf
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2020-04-12 12:37:24 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2020-04-12 12:37:24 +0000
commit8779e4c0e44f2827d0ccc6cfb78b40a88f4182b6 (patch)
tree2dd995ad347f52b78aa9a5b1da9c04f7979dd7ea /src/plugins/PlayListFormats/xspf
parent371552f58c4580a995f83bf1d840a7297f7265ea (diff)
downloadqmmp-8779e4c0e44f2827d0ccc6cfb78b40a88f4182b6.tar.gz
qmmp-8779e4c0e44f2827d0ccc6cfb78b40a88f4182b6.tar.bz2
qmmp-8779e4c0e44f2827d0ccc6cfb78b40a88f4182b6.zip
changed playlist api
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9332 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/PlayListFormats/xspf')
-rw-r--r--src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp2
-rw-r--r--src/plugins/PlayListFormats/xspf/xspfplaylistformat.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp b/src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp
index e000c9b90..cbea9ea57 100644
--- a/src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp
+++ b/src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp
@@ -28,7 +28,7 @@
// Needs more work - it's better use libSpiff there and put it as plugin.
-const PlayListFormatProperties XSPFPlaylistFormat::XSPFPlaylistFormat::properties() const
+PlayListFormatProperties XSPFPlaylistFormat::XSPFPlaylistFormat::properties() const
{
PlayListFormatProperties p;
p.filters << "*.xspf";
diff --git a/src/plugins/PlayListFormats/xspf/xspfplaylistformat.h b/src/plugins/PlayListFormats/xspf/xspfplaylistformat.h
index a80a3bdfe..2a5f87410 100644
--- a/src/plugins/PlayListFormats/xspf/xspfplaylistformat.h
+++ b/src/plugins/PlayListFormats/xspf/xspfplaylistformat.h
@@ -36,7 +36,7 @@ class XSPFPlaylistFormat : public QObject, public PlayListFormat
Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.PlayListFormatInterface.1.0")
Q_INTERFACES(PlayListFormat)
public:
- const PlayListFormatProperties properties() const override;
+ PlayListFormatProperties properties() const override;
QList<PlayListTrack*> decode(const QByteArray &contents) override;
QByteArray encode(const QList<PlayListTrack*> &contents, const QString &path) override;
};