From 5174dce64fcf065c5b54c9b8e80abe9a1f84d093 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Sun, 16 Jan 2022 13:57:50 +0000 Subject: [PATCH] Remove unused forward declaration. --- src/core/lvmdevice.h | 1 - src/util/helpers.cpp | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/lvmdevice.h b/src/core/lvmdevice.h index 5ef67d9..72dabb5 100644 --- a/src/core/lvmdevice.h +++ b/src/core/lvmdevice.h @@ -24,7 +24,6 @@ class PartitionTable; class Report; class Partition; -class SmartStatus; /** Representation of LVM Volume Group(VG). diff --git a/src/util/helpers.cpp b/src/util/helpers.cpp index a531c0c..7acb704 100644 --- a/src/util/helpers.cpp +++ b/src/util/helpers.cpp @@ -48,7 +48,7 @@ KAboutData aboutKPMcore() KAboutData aboutData( QStringLiteral("kpmcore"), xi18nc("@title", "KPMcore"), QStringLiteral(VERSION), xi18nc("@title", "Library for managing partitions"), - KAboutLicense::GPL_V3, xi18nc("@info:credit", "© 2008-2020 KPMcore developers" ) ); + KAboutLicense::GPL_V3, xi18nc("@info:credit", "© 2008-2022 KPMcore developers" ) ); aboutData.setOrganizationDomain(QByteArray("kde.org")); aboutData.setProductName(QByteArray("kpmcore")); aboutData.setHomepage(QStringLiteral("https://commits.kde.org/kpmcore"));