aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/PlayListFormats/m3u/m3uplaylistformat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/PlayListFormats/m3u/m3uplaylistformat.h')
-rw-r--r--src/plugins/PlayListFormats/m3u/m3uplaylistformat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/PlayListFormats/m3u/m3uplaylistformat.h b/src/plugins/PlayListFormats/m3u/m3uplaylistformat.h
index 379ae063e..dd859c807 100644
--- a/src/plugins/PlayListFormats/m3u/m3uplaylistformat.h
+++ b/src/plugins/PlayListFormats/m3u/m3uplaylistformat.h
@@ -36,8 +36,8 @@ class M3UPlaylistFormat : public QObject, public PlayListFormat
Q_INTERFACES(PlayListFormat)
public:
const PlayListFormatProperties properties() const;
- QStringList decode(const QString& contents);
- QString encode(const QList<PlayListTrack*>& contents, const QString &path);
+ QList<PlayListTrack*> decode(const QByteArray &contents);
+ QByteArray encode(const QList<PlayListTrack*>& contents, const QString &path);
};