mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-20 04:58:09 +00:00
fix(CoreManager): add empty sendLogs function
This commit is contained in:
parent
9eb79a27ec
commit
0ebe2baff1
1 changed files with 6 additions and 1 deletions
|
|
@ -93,12 +93,17 @@ VcardModel *CoreManager::createDetachedVcardModel () const {
|
|||
}
|
||||
|
||||
void CoreManager::forceRefreshRegisters () {
|
||||
Q_ASSERT(mCore != nullptr);
|
||||
Q_CHECK_PTR(mCore);
|
||||
|
||||
qInfo() << QStringLiteral("Refresh registers.");
|
||||
mCore->refreshRegisters();
|
||||
}
|
||||
|
||||
void CoreManager::sendLogs () const {
|
||||
Q_CHECK_PTR(mCore);
|
||||
// TODO.
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
#define SET_DATABASE_PATH(DATABASE, PATH) \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue