Minor reorder of TCDDrawStyle enum, forgotten previously

git-svn-id: trunk@30092 -
This commit is contained in:
sekelsenmat 2011-03-31 06:39:38 +00:00
parent e191075b61
commit 3c48e02f12

View File

@ -37,7 +37,13 @@ type
TBitmappedButtonState = (bbsNormal, bbsDown, bbsMouseOver, bbsFocused
(* bbsChecked, bbsCheckedSelected, bbsCheckedDown { is going to be unchecked }*));
TCDDrawStyle = (dsGrad, dsWinCE, dsWin2000, dsAndroid, dsXPTaskBar, dsCustom);
TCDDrawStyle = (
// Operating system styles
dsWinCE, dsWin2000, dsAndroid, dsXPTaskBar,
// Other special styles
dsGrad,
// Defined by the user
dsCustom);
{ TCustomBitmappedButton }