fix: intialization ui/squawk.cpp before than Core::Squawk::ready

This commit is contained in:
antonpavanvo 2022-05-28 00:24:51 +04:00 committed by antonpavanvo
parent 645b92ba51
commit 11da9c8ae5
1 changed files with 3 additions and 3 deletions

View File

@ -29,6 +29,7 @@ Application::Application(Core::Squawk* p_core):
destroyingSquawk(false),
storage()
{
squawk = new Squawk(roster);
connect(&roster, &Models::Roster::unnoticedMessage, this, &Application::notify);
connect(&roster, &Models::Roster::unreadMessagesCountChanged, this, &Application::unreadMessagesCountChanged);
@ -53,7 +54,7 @@ Application::Application(Core::Squawk* p_core):
connect(&roster, &Models::Roster::localPathInvalid, core, &Core::Squawk::onLocalPathInvalid);
//coonecting backend to myself
//connecting backend to myself
connect(core, &Core::Squawk::stateChanged, this, &Application::stateChanged);
connect(core, &Core::Squawk::accountMessage, &roster, &Models::Roster::addMessage);
@ -147,8 +148,7 @@ void Application::checkForTheLastWindow()
void Application::createMainWindow()
{
if (squawk == nullptr) {
squawk = new Squawk(roster);
if (squawk) {
connect(squawk, &Squawk::notify, this, &Application::notify);
connect(squawk, &Squawk::changeSubscription, this, &Application::changeSubscription);