made wxADJUST_MINSIZE default

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26449 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-03-29 10:18:38 +00:00
parent 8ab505498d
commit 395a82b13f
4 changed files with 17 additions and 19 deletions

View File

@@ -1031,8 +1031,11 @@ enum wxStretch
wxGROW = 0x2000,
wxEXPAND = wxGROW,
wxSHAPED = 0x4000,
wxADJUST_MINSIZE = 0x8000,
wxTILE = 0xc000
// free value: 0x8000 (old wxADJUST_MINSIZE)
wxTILE = 0xc000,
// for compatibility only, default now, don't use explicitly any more
wxADJUST_MINSIZE = 0x0000
};
/* border flags: the values are chosen for backwards compatibility */