mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-10 14:36:09 +02:00
MG: fixes for fpc1.1
git-svn-id: trunk@2449 -
This commit is contained in:
parent
1737ab40fa
commit
fcbeaadf01
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user