diff options
author | George Hazan <george.hazan@gmail.com> | 2014-03-13 12:46:12 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-03-13 12:46:12 +0000 |
commit | e0ed9d34c0c21d3436e855fa1d32a0f824583116 (patch) | |
tree | 3af99c54d25ea730df7c32a5e37dd83087d4986e /plugins/ImportTXT | |
parent | 787fc82cd195c9d7c5f359c3a04e93c9ca797655 (diff) |
another atavism died: DBEF_FIRST
git-svn-id: http://svn.miranda-ng.org/main/trunk@8590 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ImportTXT')
-rw-r--r-- | plugins/ImportTXT/ImportThrd.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ImportTXT/ImportThrd.pas b/plugins/ImportTXT/ImportThrd.pas index 31e185bf90..24a92156a8 100644 --- a/plugins/ImportTXT/ImportThrd.pas +++ b/plugins/ImportTXT/ImportThrd.pas @@ -139,7 +139,7 @@ begin db_event_get(hExistingDbEvent, @dbeiExisting);
// compare event
if (dbei.timestamp = dbeiExisting.timestamp) and
- ((dbei.flags) = (dbeiExisting.flags and not DBEF_FIRST)) and
+ ((dbei.flags) = (dbeiExisting.flags)) and
// fix for first event
(dbei.eventType = dbeiExisting.eventType) and
(dbei.cbBlob = dbeiExisting.cbBlob) then
|