mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 03:18:07 +00:00
14 lines
No EOL
273 B
C++
14 lines
No EOL
273 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;
|
|
} |