Use default destructor

This commit is contained in:
Nicolas Fella 2019-06-13 15:24:13 +02:00
parent 8a118a6fae
commit b44c97bb79
2 changed files with 1 additions and 5 deletions

View file

@ -37,10 +37,6 @@ TelephonyPlugin::TelephonyPlugin(QObject* parent, const QVariantList& args)
{
}
TelephonyPlugin::~TelephonyPlugin()
{
}
KNotification* TelephonyPlugin::createNotification(const NetworkPacket& np)
{
const QString event = np.get<QString>(QStringLiteral("event"));

View file

@ -55,7 +55,7 @@ class TelephonyPlugin
public:
explicit TelephonyPlugin(QObject* parent, const QVariantList& args);
~TelephonyPlugin() override;
~TelephonyPlugin() = default;
bool receivePacket(const NetworkPacket& np) override;
void connected() override {}