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:
Vadim Zeitlin
2006-11-03 21:54:13 +00:00
parent 322f55e8d0
commit 305329c2f1
7 changed files with 14 additions and 11 deletions

View File

@@ -107,7 +107,7 @@ public:
wxFontPickerCtrl(wxWindow *parent,
wxWindowID id,
const wxFont& initial = *wxNORMAL_FONT,
const wxFont& initial = wxNullFont,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxFNTP_DEFAULT_STYLE,
@@ -121,7 +121,7 @@ public:
bool Create(wxWindow *parent,
wxWindowID id,
const wxFont& initial = *wxNORMAL_FONT,
const wxFont& initial = wxNullFont,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxFNTP_DEFAULT_STYLE,