You've already forked lazarus-ccr
jvcllaz: Check packages and demos for Laz 1.8.4 / 2.0.0 / 2.0.2 / trunk and FPC 3.0.4 / FPC 3.2 / trunk. 32-bit, Laz 2.0.2/FPC 3.2 64 bit. Make fixes needed.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6971 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -102,7 +102,7 @@ begin
|
||||
Strings.AddObject(
|
||||
Format('%s - %s',
|
||||
[ID3_FrameIDToString(lFrameID), TFSDesigner(FSDesigner).FrameDescription[lFrameID]]),
|
||||
TObject(lFrameID));
|
||||
TObject(PtrInt(lFrameID)));
|
||||
finally
|
||||
Strings.EndUpdate;
|
||||
end;
|
||||
@ -128,7 +128,7 @@ function TJvID3DefineDlg.GetFrameID: TJvID3FrameID;
|
||||
begin
|
||||
with cmbFrames do
|
||||
if ItemIndex >= 0 then
|
||||
Result := TJvID3FrameID(Items.Objects[ItemIndex])
|
||||
Result := TJvID3FrameID(PtrInt(Items.Objects[ItemIndex]))
|
||||
else
|
||||
Result := fiUnknownFrame;
|
||||
end;
|
||||
|
Reference in New Issue
Block a user