Skip to content

Commit 984b365

Browse files
committed
fix common duplicates
1 parent 48d0d5c commit 984b365

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: Decard64/Decard64.dproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@
140140
<DCC_Namespace>VCL;System;$(DCC_Namespace)</DCC_Namespace>
141141
<VerInfo_MinorVer>1</VerInfo_MinorVer>
142142
<VerInfo_Release>1</VerInfo_Release>
143-
<VerInfo_Build>4</VerInfo_Build>
144-
<VerInfo_Keys>CompanyName=Dmitri Iatsenko;FileDescription=Card game design/translate tool;FileVersion=1.1.1.4;InternalName=Decard;LegalCopyright=feeware opensource;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
143+
<VerInfo_Build>5</VerInfo_Build>
144+
<VerInfo_Keys>CompanyName=Dmitri Iatsenko;FileDescription=Card game design/translate tool;FileVersion=1.1.1.5;InternalName=Decard;LegalCopyright=feeware opensource;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
145145
</PropertyGroup>
146146
<ItemGroup>
147147
<DelphiCompile Include="$(MainSource)">

Diff for: Decard64/Decard64.res

0 Bytes
Binary file not shown.

Diff for: Decard64/u_CellEditForm.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ procedure TCellEditForm.lbMacrosDblClick(Sender: TObject);
447447
begin
448448
s := lbFiltered.Items[lbFiltered.ItemIndex];
449449

450-
if Sender<>nil then
450+
if (Sender<>nil)and(lbCommon.Items.IndexOf(s)=-1) then
451451
lbCommon.Items.Add(s);
452452

453453
if seWrap.Lines.IndexOf(s)>-1 then

0 commit comments

Comments
 (0)