You've already forked lazarus-ccr
jvcllaz: Set package version numbers to 1.0.5 for upcoming OPM release. Less hints and warnings.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6969 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -477,7 +477,7 @@ function TJvCustomNumEdit.IsValidChar(Key: Char): Boolean;
|
||||
var
|
||||
S: string;
|
||||
FSelStart, SelStop, DecPos: Integer;
|
||||
RetValue: Double;
|
||||
RetValue: Double = 0.0;
|
||||
begin
|
||||
Result := False;
|
||||
S := EditText;
|
||||
|
@ -85,7 +85,7 @@ type
|
||||
procedure MouseLeave(Control: TControl); override;
|
||||
procedure Paint; override;
|
||||
procedure PaintButton(ACanvas: TCanvas); virtual;
|
||||
procedure PaintFrame(ACanvas: TCanvas); virtual;
|
||||
procedure PaintFrame({%H-}ACanvas: TCanvas); virtual;
|
||||
function InsideBtn(X, Y: Integer): Boolean; virtual;
|
||||
function WantKey(Key: Integer; Shift: TShiftState;
|
||||
const KeyText: WideString): Boolean; override;
|
||||
@ -419,7 +419,7 @@ begin
|
||||
else
|
||||
Exit;
|
||||
{ wait 'til menu is done }
|
||||
while PeekMessage(Msg, 0, LM_MOUSEFIRST, LM_MOUSELAST, PM_REMOVE) do
|
||||
while PeekMessage(Msg{%H-}, 0, LM_MOUSEFIRST, LM_MOUSELAST, PM_REMOVE) do
|
||||
{nothing};
|
||||
{ release button }
|
||||
MouseUp(Button, Shift, X, Y);
|
||||
|
@ -34,10 +34,9 @@ unit JvCheckBox;
|
||||
interface
|
||||
|
||||
uses
|
||||
LCLIntf, LCLType, LMessages,
|
||||
Classes, Graphics, Controls, StdCtrls, Types,
|
||||
JvTypes, JvLinkedControls;
|
||||
// JvTypes, JvExStdCtrls, JvLinkedControls, JvDataSourceIntf;
|
||||
LCLIntf, LCLType,
|
||||
Classes, Graphics, Controls, StdCtrls,
|
||||
JvLinkedControls;
|
||||
|
||||
const
|
||||
DefaultValueChecked = '1';
|
||||
|
Reference in New Issue
Block a user