mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-21 13:08:08 +00:00
Fixed crash with AbstractDB, TODO investigate why it was crashing and this makes it work...
This commit is contained in:
parent
f308510501
commit
a77a4f857e
2 changed files with 2 additions and 2 deletions
|
|
@ -46,7 +46,7 @@ LINPHONE_BEGIN_NAMESPACE
|
|||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
MainDb::MainDb (const shared_ptr<Core> &core) : CoreAccessor(core), AbstractDb(*new MainDbPrivate) {}
|
||||
MainDb::MainDb (const shared_ptr<Core> &core) : AbstractDb(*new MainDbPrivate), CoreAccessor(core) {}
|
||||
|
||||
#ifdef SOCI_ENABLED
|
||||
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ class Core;
|
|||
class EventLog;
|
||||
class MainDbPrivate;
|
||||
|
||||
class LINPHONE_PUBLIC MainDb : public CoreAccessor, public AbstractDb {
|
||||
class LINPHONE_PUBLIC MainDb : public AbstractDb, public CoreAccessor {
|
||||
public:
|
||||
enum Filter {
|
||||
NoFilter = 0x0,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue