deprecate wxTE_AUTO_SCROLL as it's always on in the ports which support it anyhow (#2176)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54405 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -65,7 +65,6 @@ const wxTextCoord wxInvalidTextCoord = -2;
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
#define wxTE_NO_VSCROLL 0x0002
|
||||
#define wxTE_AUTO_SCROLL 0x0008
|
||||
|
||||
#define wxTE_READONLY 0x0010
|
||||
#define wxTE_MULTILINE 0x0020
|
||||
@@ -108,6 +107,11 @@ const wxTextCoord wxInvalidTextCoord = -2;
|
||||
#define wxTE_LINEWRAP wxTE_CHARWRAP
|
||||
#endif // WXWIN_COMPATIBILITY_2_6
|
||||
|
||||
#if WXWIN_COMPATIBILITY_2_8
|
||||
// this style is (or at least should be) on by default now, don't use it
|
||||
#define wxTE_AUTO_SCROLL 0
|
||||
#endif // WXWIN_COMPATIBILITY_2_8
|
||||
|
||||
// force using RichEdit version 2.0 or 3.0 instead of 1.0 (default) for
|
||||
// wxTE_RICH controls - can be used together with or instead of wxTE_RICH
|
||||
#define wxTE_RICH2 0x8000
|
||||
|
Reference in New Issue
Block a user