mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-16 11:00:50 +01:00
fixed old toolbar compilation
git-svn-id: trunk@5222 -
This commit is contained in:
parent
6c8e827f79
commit
71dd6ba928
@ -1033,9 +1033,6 @@ type
|
|||||||
TToolBar = class;
|
TToolBar = class;
|
||||||
TToolButton = class;
|
TToolButton = class;
|
||||||
|
|
||||||
TToolButtonState = (tbsChecked, tbsPressed, tbsEnabled, tbsHidden,
|
|
||||||
tbsIndeterminate, tbsWrap, tbsEllipses, tbsMarked);
|
|
||||||
|
|
||||||
{ TToolButtonActionLink }
|
{ TToolButtonActionLink }
|
||||||
|
|
||||||
TToolButtonActionLink = class(TControlActionLink)
|
TToolButtonActionLink = class(TControlActionLink)
|
||||||
@ -2238,6 +2235,9 @@ end.
|
|||||||
{ =============================================================================
|
{ =============================================================================
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.114 2004/02/22 16:22:53 mattias
|
||||||
|
fixed old toolbar compilation
|
||||||
|
|
||||||
Revision 1.113 2004/02/22 16:20:29 mattias
|
Revision 1.113 2004/02/22 16:20:29 mattias
|
||||||
fixed old toolbar compilation
|
fixed old toolbar compilation
|
||||||
|
|
||||||
|
|||||||
@ -657,6 +657,14 @@ end;
|
|||||||
|
|
||||||
{$ELSE NewToolBar}
|
{$ELSE NewToolBar}
|
||||||
|
|
||||||
|
const
|
||||||
|
ButtonStates: array[TToolButtonState] of Word = (TBSTATE_CHECKED,
|
||||||
|
TBSTATE_PRESSED, TBSTATE_ENABLED, TBSTATE_HIDDEN, TBSTATE_INDETERMINATE,
|
||||||
|
TBSTATE_WRAP, TBSTATE_ELLIPSES, TBSTATE_MARKED);
|
||||||
|
|
||||||
|
ButtonStyles: array[TToolButtonStyle] of Byte = (TBSTYLE_BUTTON, TBSTYLE_CHECK,
|
||||||
|
TBSTYLE_DROPDOWN, TBSTYLE_SEP, TBSTYLE_SEP);
|
||||||
|
|
||||||
{ TToolButton }
|
{ TToolButton }
|
||||||
|
|
||||||
constructor TToolButton.Create(AOwner: TComponent);
|
constructor TToolButton.Create(AOwner: TComponent);
|
||||||
@ -1121,6 +1129,9 @@ end;
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.13 2004/02/22 16:22:53 mattias
|
||||||
|
fixed old toolbar compilation
|
||||||
|
|
||||||
Revision 1.12 2004/02/22 16:20:29 mattias
|
Revision 1.12 2004/02/22 16:20:29 mattias
|
||||||
fixed old toolbar compilation
|
fixed old toolbar compilation
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user