From: Vadim Zeitlin Date: Thu, 5 Mar 2009 14:09:37 +0000 (+0000) Subject: fix total breakage of all fonts in wxMSW caused by r57542 which changed the value... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6bec9d5013498cdcbdb333fc2ffcefd67c5427a6 fix total breakage of all fonts in wxMSW caused by r57542 which changed the value of wxSystemFont enum elements in spite of the comment saying not to do this right above it git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59335 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/settings.h b/include/wx/settings.h index 7790a1d555..8de41ae424 100644 --- a/include/wx/settings.h +++ b/include/wx/settings.h @@ -29,6 +29,10 @@ enum wxSystemFont wxSYS_SYSTEM_FONT, wxSYS_DEVICE_DEFAULT_FONT, + // don't use: this is here just to make the values of enum elements + // coincide with the corresponding MSW constants + wxSYS_DEFAULT_PALETTE, + // don't use: MSDN says that this is a stock object provided only // for compatibility with 16-bit Windows versions earlier than 3.0! wxSYS_SYSTEM_FIXED_FONT,