Fix legacy-style connect in Intro.

This commit is contained in:
John Preston 2021-05-03 12:29:21 +04:00
parent 197b3c1cb5
commit 298215542e
1 changed files with 1 additions and 1 deletions

View File

@ -53,13 +53,13 @@ PhoneWidget::PhoneWidget(
connect(_country, &CountryInput::codeChanged, [=](const QString &code) {
_code->codeSelected(code);
_phone->chooseCode(code);
});
_code->codeChanged(
) | rpl::start_with_next([=](const QString &code) {
_country->onChooseCode(code);
_phone->chooseCode(code);
}, _code->lifetime());
connect(_country, SIGNAL(codeChanged(const QString &)), _phone, SLOT(onChooseCode(const QString &)));
_code->addedToNumber(
) | rpl::start_with_next([=](const QString &added) {
_phone->addedToNumber(added);