diff options
author | George Hazan <george.hazan@gmail.com> | 2014-03-12 13:52:51 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-03-12 13:52:51 +0000 |
commit | e721ceb8d105cb20b3eb644c4d6952e3780184e0 (patch) | |
tree | 9404e3a22d5d43642cca6ecbf59f4eea0764e478 /plugins/HistoryPlusPlus/hpp_bookmarks.pas | |
parent | 8d371aa2b1fa5a7bfe835dee9b60d1407b33047b (diff) |
more compilation fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@8577 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryPlusPlus/hpp_bookmarks.pas')
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_bookmarks.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/HistoryPlusPlus/hpp_bookmarks.pas b/plugins/HistoryPlusPlus/hpp_bookmarks.pas index 5d0ec98640..942ac135b3 100644 --- a/plugins/HistoryPlusPlus/hpp_bookmarks.pas +++ b/plugins/HistoryPlusPlus/hpp_bookmarks.pas @@ -634,7 +634,7 @@ begin Result := True;
break;
end;
- hDBEvent := db_event_next(hDBEvent);
+ hDBEvent := db_event_next(Contact.hContact,hDBEvent);
end;
end
else
@@ -651,7 +651,7 @@ begin Result := True;
break;
end;
- hDBEvent := db_event_prev(hDBEvent);
+ hDBEvent := db_event_prev(Contact.hContact,hDBEvent);
end;
end;
end;
|