mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-19 12:29:30 +02:00
Patch from Chris Kirkpatrick, fixed type in TTrayIcon
git-svn-id: trunk@17869 -
This commit is contained in:
parent
bf17b9f666
commit
1a0fb05b4a
@ -1104,11 +1104,11 @@ type
|
||||
|
||||
{ TCustomTrayIcon }
|
||||
|
||||
TBallonFlags = (bfNone, bfInfo, bfWarning, bfError);
|
||||
TBalloonFlags = (bfNone, bfInfo, bfWarning, bfError);
|
||||
|
||||
TCustomTrayIcon = class(TLCLComponent)
|
||||
private
|
||||
FBalloonFlags: TBallonFlags;
|
||||
FBalloonFlags: TBalloonFlags;
|
||||
FBalloonHint: string;
|
||||
FBalloonTimeout: Integer;
|
||||
FBalloonTitle: string;
|
||||
@ -1138,7 +1138,7 @@ type
|
||||
procedure ShowBalloonHint;
|
||||
function GetPosition: TPoint;
|
||||
{ Properties }
|
||||
property BalloonFlags: TBallonFlags read FBalloonFlags write FBalloonFlags default bfNone;
|
||||
property BalloonFlags: TBalloonFlags read FBalloonFlags write FBalloonFlags default bfNone;
|
||||
property BalloonHint: string read FBalloonHint write FBalloonHint;
|
||||
property BalloonTimeout: Integer read FBalloonTimeout write FBalloonTimeout default 3000;
|
||||
property BalloonTitle: string read FBalloonTitle write FBalloonTitle;
|
||||
|
Loading…
Reference in New Issue
Block a user