diff options
author | George Hazan <ghazan@miranda.im> | 2023-04-19 19:23:38 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-04-19 19:23:38 +0300 |
commit | 211185164cd3728e85736c938a05443519e8af9a (patch) | |
tree | 5d2171daf23663dbf3d1aaf3ef8f960f4f791f77 /plugins | |
parent | 617cc8e1277692d32197163a7a377aba4a8f2805 (diff) |
minor fix for h++ project
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/HistoryPlusPlus/historypp.dproj | 32 | ||||
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_externalgrid.pas | 2 |
2 files changed, 17 insertions, 17 deletions
diff --git a/plugins/HistoryPlusPlus/historypp.dproj b/plugins/HistoryPlusPlus/historypp.dproj index 5e74de2dbc..dad4c3f3c1 100644 --- a/plugins/HistoryPlusPlus/historypp.dproj +++ b/plugins/HistoryPlusPlus/historypp.dproj @@ -114,31 +114,31 @@ <DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
<DCC_UnitSearchPath>..\..\include\delphi;..\..\plugins\ExternalAPI\delphi;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
- <DCC_BplOutput>..\..\bin16\Debug\Plugins\</DCC_BplOutput>
+ <DCC_BplOutput>..\..\bin17\Debug\Plugins\</DCC_BplOutput>
<BRCC_OutputDir>..\..\bin15\temp\res\</BRCC_OutputDir>
- <DCC_ExeOutput>..\..\bin16\Debug\Plugins\</DCC_ExeOutput>
+ <DCC_ExeOutput>..\..\bin17\Debug\Plugins\</DCC_ExeOutput>
<VerInfo_Locale>1033</VerInfo_Locale>
- <DCC_DcpOutput>..\..\bin16\Debug\Obj\hpp\</DCC_DcpOutput>
+ <DCC_DcpOutput>..\..\bin17\Debug\Obj\hpp\</DCC_DcpOutput>
<Manifest_File>None</Manifest_File>
- <DCC_DcuOutput>..\..\bin16\Debug\Obj\hpp\</DCC_DcuOutput>
+ <DCC_DcuOutput>..\..\bin17\Debug\Obj\hpp\</DCC_DcuOutput>
</PropertyGroup>
<PropertyGroup Condition="'$(Cfg_2_Win64)'!=''">
- <Debugger_CWD>D:\Myranda\bin16\Debug64</Debugger_CWD>
+ <Debugger_CWD>D:\Myranda\bin17\Debug64</Debugger_CWD>
<DCC_DebugDCUs>true</DCC_DebugDCUs>
- <Debugger_HostApplication>D:\Myranda\bin16\Debug64\Miranda64.exe</Debugger_HostApplication>
+ <Debugger_HostApplication>D:\Myranda\bin17\Debug64\Miranda64.exe</Debugger_HostApplication>
<BRCC_OutputDir>..\..\bin15\temp\res\</BRCC_OutputDir>
- <DCC_ExeOutput>..\..\bin16\Debug64\Plugins\</DCC_ExeOutput>
- <DCC_BplOutput>..\..\bin16\Debug64\Plugins\</DCC_BplOutput>
- <DCC_DcuOutput>..\..\bin16\Debug64\Obj\hpp\</DCC_DcuOutput>
- <DCC_DcpOutput>..\..\bin16\Debug64\Obj\hpp\</DCC_DcpOutput>
+ <DCC_ExeOutput>..\..\bin17\Debug64\Plugins\</DCC_ExeOutput>
+ <DCC_BplOutput>..\..\bin17\Debug64\Plugins\</DCC_BplOutput>
+ <DCC_DcuOutput>..\..\bin17\Debug64\Obj\hpp\</DCC_DcuOutput>
+ <DCC_DcpOutput>..\..\bin17\Debug64\Obj\hpp\</DCC_DcpOutput>
</PropertyGroup>
<PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
- <DCC_BplOutput>..\..\bin16\Debug\Plugins\</DCC_BplOutput>
- <DCC_ExeOutput>..\..\bin16\Debug\Plugins\</DCC_ExeOutput>
- <DCC_DcpOutput>..\..\bin16\Debug\Obj\hpp\</DCC_DcpOutput>
- <DCC_DcuOutput>..\..\bin16\Debug\Obj\hpp\</DCC_DcuOutput>
- <Debugger_CWD>W:\miranda-ng\bin16\Debug</Debugger_CWD>
- <Debugger_HostApplication>W:\miranda-ng\bin16\Debug\Miranda32.exe</Debugger_HostApplication>
+ <DCC_BplOutput>..\..\bin17\Debug\Plugins\</DCC_BplOutput>
+ <DCC_ExeOutput>..\..\bin17\Debug\Plugins\</DCC_ExeOutput>
+ <DCC_DcpOutput>..\..\bin17\Debug\Obj\hpp\</DCC_DcpOutput>
+ <DCC_DcuOutput>..\..\bin17\Debug\Obj\hpp\</DCC_DcuOutput>
+ <Debugger_CWD>W:\miranda-ng\bin17\Debug</Debugger_CWD>
+ <Debugger_HostApplication>W:\miranda-ng\bin17\Debug\Miranda32.exe</Debugger_HostApplication>
<DCC_DebugDCUs>true</DCC_DebugDCUs>
</PropertyGroup>
<ItemGroup>
diff --git a/plugins/HistoryPlusPlus/hpp_externalgrid.pas b/plugins/HistoryPlusPlus/hpp_externalgrid.pas index f21422393d..a8ca592519 100644 --- a/plugins/HistoryPlusPlus/hpp_externalgrid.pas +++ b/plugins/HistoryPlusPlus/hpp_externalgrid.pas @@ -308,7 +308,7 @@ var RTLMode: TRTLMode;
begin
SetLength(Items, Length(Items) + 1);
- Items[High(Items)].hDBEvent := 0;
+ Items[High(Items)].hDBEvent := CustomItem.hEvent;
Items[High(Items)].hContact := hContact;
Items[High(Items)].Codepage := Codepage;
Items[High(Items)].Custom := True;
|