mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 04:55:48 +03:00
c4e51247d8
As we use the new connection syntax in folderman.cpp, some more symbol need to be mocked
7 lines
465 B
C++
7 lines
465 B
C++
// stub to prevent linker error
|
|
#include "accountmanager.h"
|
|
OCC::AccountManager *OCC::AccountManager::instance() { return static_cast<AccountManager *>(new QObject); }
|
|
void OCC::AccountManager::saveAccountState(AccountState *) { }
|
|
void OCC::AccountManager::save(bool saveCredentials) { Q_UNUSED(saveCredentials); }
|
|
void OCC::AccountManager::accountRemoved(OCC::AccountState*) { }
|
|
const QMetaObject OCC::AccountManager::staticMetaObject = QObject::staticMetaObject;
|