seems the commit with layout change for android broke the mac build.
that commit includes fair amount of rework of the qt forms/gui and seems to have renamed some variables.
the first error is
../src/qt/sendcoinsentry.cpp:23:9: error: no member named 'payToLayout' in 'Ui::SendCoinsEntry'
ui->payToLayout->setSpacing(4);
change
sendcoinsentry.ui #121
next error
```
../src/qt/sendmessagesentry.cpp:23:9: error: no member named 'sendToLayout' in 'Ui::SendMessagesEntry'; did you mean 'sendToLayout_2'?
ui->sendToLayout->setSpacing(4);
^~~~~~~~~~~~
sendToLayout_2
build/ui_sendmessagesentry.h:32:18: note: 'sendToLayout_2' declared here
QHBoxLayout *sendToLayout_2;
^
1 error generated.
```
change
sendmessagesentry.cpp#23
ui->sendToLayout_2->setSpacing(4);
the second possibly can do with some appropriate renaming as i just did a quick fix to get it working
edited because i put the wrong file details 📦
seems the commit with layout change for android broke the mac build. that commit includes fair amount of rework of the qt forms/gui and seems to have renamed some variables.
the first error is
change sendcoinsentry.ui #121