diff options
author | George Hazan <george.hazan@gmail.com> | 2012-12-10 13:14:25 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-12-10 13:14:25 +0000 |
commit | c75c4c955af1c261091a86f2e4933a9856f118a1 (patch) | |
tree | d8825809673bafdf997ccff5a01d95f028c731ce /plugins/HistoryPlusPlus/hpp_externalgrid.pas | |
parent | 8044bbcf4a63c6bb0efddb18acc60ce43bbf158d (diff) |
another 64-bit issues in h++
git-svn-id: http://svn.miranda-ng.org/main/trunk@2711 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryPlusPlus/hpp_externalgrid.pas')
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_externalgrid.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/HistoryPlusPlus/hpp_externalgrid.pas b/plugins/HistoryPlusPlus/hpp_externalgrid.pas index eedf8920eb..932b968219 100644 --- a/plugins/HistoryPlusPlus/hpp_externalgrid.pas +++ b/plugins/HistoryPlusPlus/hpp_externalgrid.pas @@ -1086,7 +1086,7 @@ begin exit;
for i := 0 to Grid.Count - 1 do
begin
- if (Items[i].hDBEvent = Cardinal(M.LParam)) then
+ if (Items[i].hDBEvent = uint_ptr(M.LParam)) then
begin
Grid.Delete(i);
exit;
|