MG: mouse cursors are now allocated on demand

git-svn-id: trunk@1278 -
This commit is contained in:
lazarus 2002-02-09 01:48:12 +00:00
parent 0bf317cdb3
commit 3cc4d1695e

View File

@ -205,6 +205,8 @@ type
const
// Cursor constants
crHigh = TCursor(0);
crDefault = TCursor(0);
crNone = TCursor(-1);
crArrow = TCursor(-2);
@ -228,7 +230,8 @@ const
crHelp = TCursor(-20);
crHandPoint = TCursor(-21);
crSizeAll = TCursor(-22);
crLow = TCursor(-22);
type
TWndMethod = procedure(var TheMessage : TLMessage) of Object;
@ -1379,6 +1382,9 @@ end.
{ =============================================================================
$Log$
Revision 1.83 2002/10/30 12:37:25 lazarus
MG: mouse cursors are now allocated on demand
Revision 1.82 2002/10/26 15:15:45 lazarus
MG: broke LCL<->interface circles