From 8a6f982632b4f4710576685a5647a771384ab29a Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sun, 6 Jan 2019 19:27:03 +0000 Subject: using override keyword git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@8591 90c681e8-e032-0410-971d-27865f9a5e38 --- src/qmmpui/playlistgroup.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/qmmpui/playlistgroup.h') diff --git a/src/qmmpui/playlistgroup.h b/src/qmmpui/playlistgroup.h index 73dc04137..d797403f6 100644 --- a/src/qmmpui/playlistgroup.h +++ b/src/qmmpui/playlistgroup.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2013-2018 by Ilya Kotov * + * Copyright (C) 2013-2019 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -46,8 +46,8 @@ public: * Returns formatted title of the group. * @param column Number of column (unused). */ - const QString formattedTitle(int column = 0); - const QStringList formattedTitles(); + const QString formattedTitle(int column = 0) override; + const QStringList formattedTitles() override; /*! * Returns \b true if the group contains track \b track. * Otherwise returns \b false. @@ -69,11 +69,11 @@ public: /*! * Returns formatted length of the item. */ - const QString formattedLength() { return QString(); } + const QString formattedLength() override { return QString(); } /*! * Returns \b true. */ - bool isGroup() const; + bool isGroup() const override; private: QList trackList; //A list of tracks -- cgit v1.2.3-13-gbd6f