aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/PlayListFormats/m3u
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/PlayListFormats/m3u')
-rw-r--r--src/plugins/PlayListFormats/m3u/m3uplaylistformat.cpp2
-rw-r--r--src/plugins/PlayListFormats/m3u/m3uplaylistformat.h8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/PlayListFormats/m3u/m3uplaylistformat.cpp b/src/plugins/PlayListFormats/m3u/m3uplaylistformat.cpp
index dca7bac33..f004f5099 100644
--- a/src/plugins/PlayListFormats/m3u/m3uplaylistformat.cpp
+++ b/src/plugins/PlayListFormats/m3u/m3uplaylistformat.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2008-2017 by Ilya Kotov *
+ * Copyright (C) 2008-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/plugins/PlayListFormats/m3u/m3uplaylistformat.h b/src/plugins/PlayListFormats/m3u/m3uplaylistformat.h
index c22bab1c8..800e56795 100644
--- a/src/plugins/PlayListFormats/m3u/m3uplaylistformat.h
+++ b/src/plugins/PlayListFormats/m3u/m3uplaylistformat.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2008-2017 by Ilya Kotov *
+ * Copyright (C) 2008-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -36,9 +36,9 @@ class M3UPlaylistFormat : public QObject, public PlayListFormat
Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.PlayListFormatInterface.1.0")
Q_INTERFACES(PlayListFormat)
public:
- const PlayListFormatProperties properties() const;
- QList<PlayListTrack*> decode(const QByteArray &contents);
- QByteArray encode(const QList<PlayListTrack*>& contents, const QString &path);
+ const PlayListFormatProperties properties() const override;
+ QList<PlayListTrack*> decode(const QByteArray &contents) override;
+ QByteArray encode(const QList<PlayListTrack*>& contents, const QString &path) override;
};