From 999d22f6c3c618cde52097547e53703664d7e665 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 20 Jan 2020 19:32:28 +0300 Subject: db_event_delete: unused parameter removed --- plugins/Import/src/dbrw/dbevents.cpp | 2 +- plugins/Import/src/dbrw/dbintf.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/Import') diff --git a/plugins/Import/src/dbrw/dbevents.cpp b/plugins/Import/src/dbrw/dbevents.cpp index 8fdac2a857..0b4611d51d 100644 --- a/plugins/Import/src/dbrw/dbevents.cpp +++ b/plugins/Import/src/dbrw/dbevents.cpp @@ -39,7 +39,7 @@ STDMETHODIMP_(MEVENT) CDbxSQLite::AddEvent(MCONTACT, DBEVENTINFO*) return 0; } -STDMETHODIMP_(BOOL) CDbxSQLite::DeleteEvent(MCONTACT, MEVENT) +STDMETHODIMP_(BOOL) CDbxSQLite::DeleteEvent(MEVENT) { return FALSE; } diff --git a/plugins/Import/src/dbrw/dbintf.h b/plugins/Import/src/dbrw/dbintf.h index 07b2a62a2b..6d62fd6fb6 100644 --- a/plugins/Import/src/dbrw/dbintf.h +++ b/plugins/Import/src/dbrw/dbintf.h @@ -133,7 +133,7 @@ public: STDMETHODIMP_(LONG) GetEventCount(MCONTACT contactID) override; STDMETHODIMP_(MEVENT) AddEvent(MCONTACT contactID, DBEVENTINFO *dbe) override; - STDMETHODIMP_(BOOL) DeleteEvent(MCONTACT contactID, MEVENT hDbEvent) override; + STDMETHODIMP_(BOOL) DeleteEvent(MEVENT hDbEvent) override; STDMETHODIMP_(BOOL) EditEvent(MCONTACT contactID, MEVENT hDbEvent, DBEVENTINFO *dbe) override; STDMETHODIMP_(LONG) GetBlobSize(MEVENT hDbEvent) override; STDMETHODIMP_(BOOL) GetEvent(MEVENT hDbEvent, DBEVENTINFO *dbe) override; -- cgit v1.2.3