You've already forked lazarus-ccr
jvcllaz: Less hints and warnings.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7269 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -3701,11 +3701,12 @@ end;
|
||||
|
||||
procedure TJvFullColorGroup.Paint;
|
||||
var
|
||||
Index, IndexX, IndexY, XMaj: Integer;
|
||||
Index: Integer;
|
||||
//IndexX, IndexY, XMaj: Integer;
|
||||
XOffset, YOffset, XInc, YInc: Integer;
|
||||
X, Y: Integer;
|
||||
lEdge: TJvFullColorEdge;
|
||||
lClipRect: TRect;
|
||||
//lClipRect: TRect;
|
||||
|
||||
procedure BevelRect(const R: TRect; Style: TJvFullColorEdge;
|
||||
FillStyle: TBrushStyle; FillColor: TColor);
|
||||
@ -3752,7 +3753,7 @@ begin
|
||||
|
||||
Y := YOffset;
|
||||
X := XOffset;
|
||||
lClipRect := Canvas.ClipRect;
|
||||
//lClipRect := Canvas.ClipRect;
|
||||
|
||||
Index := 0;
|
||||
while Index < Items.Count do
|
||||
|
@ -2935,12 +2935,15 @@ begin
|
||||
(Text = '') and (Description = '');
|
||||
end;
|
||||
|
||||
function HasNonISO_8859_1Chars(const S: WideString): Boolean;
|
||||
//function HasNonISO_8859_1Chars(const S: WideString): Boolean;
|
||||
function HasNonISO_8859_1Chars(const S: String): Boolean;
|
||||
var
|
||||
I: Integer;
|
||||
ws: WideString;
|
||||
begin
|
||||
for I := 1 to Length(S) do
|
||||
if Ord(S[I]) > $FF then
|
||||
ws := UTF8Decode(S);
|
||||
for I := 1 to Length(ws) do
|
||||
if Ord(ws[I]) > $FF then
|
||||
begin
|
||||
Result := True;
|
||||
Exit;
|
||||
|
@ -123,7 +123,6 @@ var
|
||||
C, C2: TFPColor;
|
||||
Dest: TBitmap;
|
||||
Val: Integer;
|
||||
Tmp: TFPColor;
|
||||
IntfImg: TLazIntfImage;
|
||||
begin
|
||||
if FWorking or (csLoading in ComponentState) or (csDestroying in ComponentState) then
|
||||
|
Reference in New Issue
Block a user