From: Vadim Zeitlin Date: Fri, 3 Feb 2012 00:24:09 +0000 (+0000) Subject: Fix the type of global font constants in the documentation. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e2e19a29ac5472a27bfa370af0c9ccc5865f9080?ds=sidebyside Fix the type of global font constants in the documentation. wxNORMAL_FONT, wxSMALL_FONT &c were documented as wxFont objects but they are really wxFont pointers. Closes #13917. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70501 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/font.h b/interface/wx/font.h index 1304eaecb5..dab6d19b2a 100644 --- a/interface/wx/font.h +++ b/interface/wx/font.h @@ -1016,25 +1016,25 @@ wxFont wxNullFont; @see wxSystemSettings */ -wxFont wxNORMAL_FONT; +wxFont* wxNORMAL_FONT; /** A font using the @c wxFONTFAMILY_SWISS family and 2 points smaller than ::wxNORMAL_FONT. */ -wxFont wxSMALL_FONT; +wxFont* wxSMALL_FONT; /** A font using the @c wxFONTFAMILY_ROMAN family and @c wxFONTSTYLE_ITALIC style and of the same size of ::wxNORMAL_FONT. */ -wxFont wxITALIC_FONT; +wxFont* wxITALIC_FONT; /** A font identic to ::wxNORMAL_FONT except for the family used which is @c wxFONTFAMILY_SWISS. */ -wxFont wxSWISS_FONT; +wxFont* wxSWISS_FONT; /**