From f7001757a832e948645713a94739f66b07d5f2c1 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 21 Mar 2018 18:06:27 +0300 Subject: DATABASELINK::Unload method replaced with the virtual destructor of MDatabaseCommon --- plugins/Import/src/dbrw/dbrw.cpp | 11 ++--------- plugins/Import/src/import.cpp | 5 +++-- 2 files changed, 5 insertions(+), 11 deletions(-) (limited to 'plugins/Import') diff --git a/plugins/Import/src/dbrw/dbrw.cpp b/plugins/Import/src/dbrw/dbrw.cpp index 728fafe9ff..b5ed672bdb 100644 --- a/plugins/Import/src/dbrw/dbrw.cpp +++ b/plugins/Import/src/dbrw/dbrw.cpp @@ -77,19 +77,13 @@ static int dbrw_grokHeader(const wchar_t *profile) return rc; } -static MIDatabase* dbrw_Load(const wchar_t *profile, BOOL) +static MDatabaseCommon* dbrw_Load(const wchar_t *profile, BOOL) { CDbxSQLite *db = new CDbxSQLite(); db->Open(profile); return db; } -static int dbrw_Unload(MIDatabase *db) -{ - delete (CDbxSQLite*)db; - return 0; -} - static DATABASELINK dblink = { sizeof(DATABASELINK), @@ -97,8 +91,7 @@ static DATABASELINK dblink = L"dbx SQLite driver", dbrw_makeDatabase, dbrw_grokHeader, - dbrw_Load, - dbrw_Unload + dbrw_Load }; void RegisterDbrw() diff --git a/plugins/Import/src/import.cpp b/plugins/Import/src/import.cpp index 7a133ae62b..76ff58be8e 100644 --- a/plugins/Import/src/import.cpp +++ b/plugins/Import/src/import.cpp @@ -68,7 +68,8 @@ static LIST arMetas(10); static HWND hdlgProgress; static DWORD nDupes, nContactsCount, nMessagesCount, nGroupsCount, nSkippedEvents, nSkippedContacts; -static MIDatabase *srcDb, *dstDb; +static MDatabaseCommon *srcDb; +static MIDatabase *dstDb; ///////////////////////////////////////////////////////////////////////////////////////// @@ -1090,7 +1091,7 @@ void MirandaImport(HWND hdlg) dstDb->SetCacheSafetyMode(TRUE); // Clean up before exit - dblink->Unload(srcDb); + delete srcDb; // Stop timer dwTimer = time(nullptr) - dwTimer; -- cgit v1.2.3