diff options
author | George Hazan <ghazan@miranda.im> | 2018-03-10 19:10:48 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-03-10 19:10:48 +0300 |
commit | 74e6676bf5bf17dac4632d3c4bf95f4df19458f7 (patch) | |
tree | 3749790a9e3f2dd6278e944451e924a5c396756b /plugins/Import/src/dbrw/dbintf.cpp | |
parent | 20c605478b56c89841adfc5ccb2d81758fda5745 (diff) |
a couple of fixes for the built-in sqlite import
Diffstat (limited to 'plugins/Import/src/dbrw/dbintf.cpp')
-rw-r--r-- | plugins/Import/src/dbrw/dbintf.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Import/src/dbrw/dbintf.cpp b/plugins/Import/src/dbrw/dbintf.cpp index 04e7734d42..137b79aaa9 100644 --- a/plugins/Import/src/dbrw/dbintf.cpp +++ b/plugins/Import/src/dbrw/dbintf.cpp @@ -74,12 +74,12 @@ STDMETHODIMP_(void) CDbxSQLite::SetCacheSafetyMode(BOOL safeMode) sql_exec(m_sqlite, "PRAGMA synchronous = OFF;"); } -STDMETHODIMP_(BOOL) CDbxSQLite::MetaMergeHistory(DBCachedContact *ccMeta, DBCachedContact *ccSub) +STDMETHODIMP_(BOOL) CDbxSQLite::MetaMergeHistory(DBCachedContact*, DBCachedContact*) { return FALSE; } -STDMETHODIMP_(BOOL) CDbxSQLite::MetaSplitHistory(DBCachedContact *ccMeta, DBCachedContact *ccSub) +STDMETHODIMP_(BOOL) CDbxSQLite::MetaSplitHistory(DBCachedContact*, DBCachedContact*) { return FALSE; }
\ No newline at end of file |