MG: fixes for fpc1.1

git-svn-id: trunk@2449 -
This commit is contained in:
lazarus 2002-08-17 23:41:23 +00:00
parent 1737ab40fa
commit fcbeaadf01

View File

@ -38,6 +38,7 @@ var
//Dragging : Boolean;
MouseCaptureWidget: PGtkWidget;
MouseCapureByLCL: boolean;
const
DblClickTime = 250;// 250 miliseconds or less between clicks is a double click
@ -272,6 +273,16 @@ const
OldCheckMenuItemToggleSize: integer = 0;
{ Accelerators }
type
PAcceleratorKey = ^TAcceleratorKey;
TAcceleratorKey = record
Key: guint;
Mods: TGdkModifierType;
Signal: string;
Realized: boolean;
end;
implementation
end.