Use default destructor
This commit is contained in:
parent
8a118a6fae
commit
b44c97bb79
2 changed files with 1 additions and 5 deletions
|
@ -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"));
|
||||
|
|
|
@ -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 {}
|
||||
|
|
Loading…
Reference in a new issue