diff options
author | George Hazan <george.hazan@gmail.com> | 2014-02-20 18:43:33 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-02-20 18:43:33 +0000 |
commit | b26198b243f682cfd66aa5d06acbb62d6d35206c (patch) | |
tree | 0bb4c9efbcb9b3418a82f804ca5825e055f6169e /plugins/BasicHistory | |
parent | b9567416b251f589ba5ac4ed1dadc644e79d6912 (diff) |
attempt to revive NAS
git-svn-id: http://svn.miranda-ng.org/main/trunk@8194 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/BasicHistory')
-rw-r--r-- | plugins/BasicHistory/src/EventList.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/BasicHistory/src/EventList.cpp b/plugins/BasicHistory/src/EventList.cpp index 420d25072a..bb6efe76f7 100644 --- a/plugins/BasicHistory/src/EventList.cpp +++ b/plugins/BasicHistory/src/EventList.cpp @@ -84,8 +84,8 @@ bool EventList::CanShowHistory(DBEVENTINFO* dbei) return true;
default:
- DBEVENTTYPEDESCR* et = ( DBEVENTTYPEDESCR* )CallService(MS_DB_EVENT_GETTYPE, ( WPARAM )dbei->szModule, ( LPARAM )dbei->eventType );
- if ( et && ( et->flags & DETF_HISTORY ))
+ DBEVENTTYPEDESCR *et = (DBEVENTTYPEDESCR*)CallService(MS_DB_EVENT_GETTYPE, ( WPARAM )dbei->szModule, ( LPARAM )dbei->eventType);
+ if (et && ( et->flags & DETF_HISTORY))
return true;
}
|