mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 03:18:07 +00:00
16 lines
No EOL
274 B
C++
16 lines
No EOL
274 B
C++
#include "LoginPage.hpp"
|
|
#include <QTimer>
|
|
|
|
|
|
LoginPage::LoginPage(QObject * parent) : QObject(parent){
|
|
|
|
}
|
|
|
|
bool LoginPage::isLogged() {
|
|
static bool testLog = false;
|
|
QTimer::singleShot(2000, [&]() mutable{
|
|
testLog = true;
|
|
emit isLoggedChanged();
|
|
});
|
|
return testLog;
|
|
} |