mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
Fix GUI build on UNIX.
This commit is contained in:
parent
bd39b48f19
commit
af531f0449
1 changed files with 4 additions and 0 deletions
|
@ -1863,8 +1863,10 @@ CSendDialog::CSendDialog(wxWindow* parent, const wxString& strAddress) : CSendDi
|
||||||
iconSend.CopyFromBitmap(wxBitmap(send16noshadow_xpm));
|
iconSend.CopyFromBitmap(wxBitmap(send16noshadow_xpm));
|
||||||
SetIcon(iconSend);
|
SetIcon(iconSend);
|
||||||
}
|
}
|
||||||
|
#ifdef __WXMSW__
|
||||||
else
|
else
|
||||||
SetIcon(wxICON(bitcoin));
|
SetIcon(wxICON(bitcoin));
|
||||||
|
#endif
|
||||||
|
|
||||||
// Fixup the tab order
|
// Fixup the tab order
|
||||||
m_buttonPaste->MoveAfterInTabOrder(m_buttonCancel);
|
m_buttonPaste->MoveAfterInTabOrder(m_buttonCancel);
|
||||||
|
@ -2360,8 +2362,10 @@ CAddressBookDialog::CAddressBookDialog(wxWindow* parent, const wxString& strInit
|
||||||
iconAddressBook.CopyFromBitmap(wxBitmap(addressbook16_xpm));
|
iconAddressBook.CopyFromBitmap(wxBitmap(addressbook16_xpm));
|
||||||
SetIcon(iconAddressBook);
|
SetIcon(iconAddressBook);
|
||||||
}
|
}
|
||||||
|
#ifdef __WXMSW__
|
||||||
else
|
else
|
||||||
SetIcon(wxICON(bitcoin));
|
SetIcon(wxICON(bitcoin));
|
||||||
|
#endif
|
||||||
|
|
||||||
// Init column headers
|
// Init column headers
|
||||||
m_listCtrlSending->InsertColumn(0, _("Name"), wxLIST_FORMAT_LEFT, 200);
|
m_listCtrlSending->InsertColumn(0, _("Name"), wxLIST_FORMAT_LEFT, 200);
|
||||||
|
|
Loading…
Reference in a new issue