This code is addressbookpage.cpp is broken:
ifdef Q_OS_MAC // Icons on push buttons are very uncommon on Mac
ui->newAddressButton->setIcon(QIcon());
ui->copyToClipboard->setIcon(QIcon());
ui->deleteButton->setIcon(QIcon());
This code is addressbookpage.cpp is broken:
ui->newAddressButton->setIcon(QIcon());
ui->copyToClipboard->setIcon(QIcon());
ui->deleteButton->setIcon(QIcon());
I did a fix on that. But it's in a PullRequest for the Qt5 Mac compatibility in laanwj branch: https://github.com/laanwj/bitcoin/pull/1
I can also create a PullRequest with the addressbookpage.cpp fixes for the master branch. @laanwj how far are we from merging Qt5 support to the master branch?
here is the commit as pull request picket out of my pull request to the Qt5 branch on laanwj branch: #2498
should work with Qt4.8. Can someone confirm? (i'm on Qt5 and rollback is pain)
@jonasschnelli That commit should fix it. The build was broken because of wrong button names that I introduced ;-). Thanks for taking care of some Mac stuff.
@jonasschnelli I have Qt4.8 on Lion and the build with your change seems to work fine for me.