transferdev / Transfercoin

source
MIT License
14 stars 42 forks source link

current mac build failing. #39

Closed bumbacoin closed 7 years ago

bumbacoin commented 8 years ago

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 📦
bumbacoin commented 8 years ago

theres' a pull with appropriate fixes.

40

also a minor cosmetic fix for the trading page