summaryrefslogtreecommitdiff
path: root/plugins/HistoryPlusPlus/EventDetailForm.pas
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-12-10 13:14:25 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-12-10 13:14:25 +0000
commitc75c4c955af1c261091a86f2e4933a9856f118a1 (patch)
treed8825809673bafdf997ccff5a01d95f028c731ce /plugins/HistoryPlusPlus/EventDetailForm.pas
parent8044bbcf4a63c6bb0efddb18acc60ce43bbf158d (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/EventDetailForm.pas')
-rw-r--r--plugins/HistoryPlusPlus/EventDetailForm.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/HistoryPlusPlus/EventDetailForm.pas b/plugins/HistoryPlusPlus/EventDetailForm.pas
index de49670700..eedae3bc66 100644
--- a/plugins/HistoryPlusPlus/EventDetailForm.pas
+++ b/plugins/HistoryPlusPlus/EventDetailForm.pas
@@ -171,7 +171,7 @@ var
implementation
uses
- HistoryGrid, hpp_messages, hpp_contacts, hpp_events, hpp_forms,
+ HistoryGrid, hpp_messages, hpp_contacts, hpp_events, hpp_forms,
{hpp_database,} hpp_options, hpp_services;
{$R *.DFM}
@@ -598,7 +598,7 @@ end;
procedure TEventDetailsFrm.HMEventDeleted(var Message: TMessage);
begin
- if Cardinal(Message.WParam) = ParentForm.History[ParentForm.GridIndexToHistory(FItem)] then
+ if uint_ptr(Message.WParam) = ParentForm.History[ParentForm.GridIndexToHistory(FItem)] then
Close;
end;