use wxNullFont instead of *wxNORMAL_FONT as default parameter for wxFontPickerCtrl/Widget, this fixes compilation with gcc 2.95 and possibly other old compilers
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42999 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -58,7 +58,9 @@ bool wxFontPickerCtrl::Create( wxWindow *parent, wxWindowID id,
|
||||
long style, const wxValidator& validator,
|
||||
const wxString &name )
|
||||
{
|
||||
if (!wxPickerBase::CreateBase(parent, id, Font2String(initial),
|
||||
if (!wxPickerBase::CreateBase(parent, id,
|
||||
Font2String(initial.IsOk() ? initial
|
||||
: *wxNORMAL_FONT),
|
||||
pos, size, style, validator, name))
|
||||
return false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user