You've already forked lazarus-ccr
jvcllaz: Repeat prev commit.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5447 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -44,7 +44,7 @@ unit JvExControls;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, Controls, Graphics, LCLIntf, LCLType, LMessages, types, Forms,
|
||||
Classes, types, Controls, Graphics, LCLIntf, LCLType, LMessages, Forms,
|
||||
JvTypes;
|
||||
|
||||
type
|
||||
@ -52,14 +52,7 @@ type
|
||||
(dcWantAllKeys, dcWantArrows, dcWantChars, dcButton, dcHasSetSel, dcWantTab,
|
||||
dcNative); // if dcNative is in the set the native allowed keys are used and GetDlgCode is ignored
|
||||
TDlgCodes = set of TDlgCode;
|
||||
(*
|
||||
{$IFDEF WINDOWS}
|
||||
TSmallPoint = Types.TSmallPoint;
|
||||
{$ENDIF}
|
||||
{$IFDEF LINUX}
|
||||
TSmallPoint = Classes.TSmallPoint;
|
||||
{$ENDIF}
|
||||
*)
|
||||
|
||||
(******************** NOT CONVERTED
|
||||
const
|
||||
dcWantMessage = dcWantAllKeys;
|
||||
@ -142,7 +135,6 @@ procedure HandleDotNetHighlighting(Control: TWinControl; const Msg: TLMessage;
|
||||
MouseOver: Boolean; Color: TColor);
|
||||
function CreateWMMessage(Msg: Integer; WParam: PtrInt; LParam: PtrInt): TLMessage; overload; {$IFDEF SUPPORTS_INLINE} inline {$ENDIF}
|
||||
function CreateWMMessage(Msg: Integer; WParam: PtrInt; LParam: TControl): TLMessage; overload; {$IFDEF SUPPORTS_INLINE} inline {$ENDIF}
|
||||
//function SmallPointToLong(const Pt: Classes.TSmallPoint): Longint; {$IFDEF SUPPORTS_INLINE} inline {$ENDIF}
|
||||
function SmallPointToLong(const Pt: TSmallPoint): LongInt; {$IFDEF SUPPORTS_INLINE} inline {$ENDIF}
|
||||
function ShiftStateToKeyData(Shift: TShiftState): Longint;
|
||||
|
||||
@ -380,7 +372,6 @@ begin
|
||||
end;
|
||||
|
||||
function SmallPointToLong(const Pt: TSmallPoint): LongInt;
|
||||
//function SmallPointToLong(const Pt: Classes.TSmallPoint): Longint;
|
||||
begin
|
||||
Result := Longint(Pt);
|
||||
end;
|
||||
|
@ -37,8 +37,8 @@ uses
|
||||
{$IFDEF WIN32}
|
||||
Windows, // before Types!
|
||||
{$ENDIF}
|
||||
LCLType, LCLProc, LMessages, Types,
|
||||
Classes, Graphics, Controls, ImgList,
|
||||
LCLType, LCLProc, LMessages, Types,
|
||||
JvTypes;
|
||||
|
||||
(******************** NOT CONVERTED
|
||||
|
Reference in New Issue
Block a user