mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-10 05:46:04 +02:00
21 lines
173 B
ObjectPascal
21 lines
173 B
ObjectPascal
unit Dsgn_AmbigBearBtn;
|
|
|
|
{$mode ObjFPC}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
type
|
|
|
|
{ TBearButton }
|
|
|
|
TBearButton = class(TComponent)
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|
|
|