mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2024-11-25 19:42:45 +01:00
8a08a51540
As discovered by AddressSanitizer
8 lines
487 B
C++
8 lines
487 B
C++
// stub to prevent linker error
|
|
#include "accountmanager.h"
|
|
OCC::AccountManager *OCC::AccountManager::instance() { static QObject dummy; return reinterpret_cast<AccountManager *>(&dummy); }
|
|
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;
|