diff options
author | George Hazan <george.hazan@gmail.com> | 2015-04-05 11:22:18 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-04-05 11:22:18 +0000 |
commit | 555cb30158d41cb7f66eae95d5aaf400a413731a (patch) | |
tree | 51612042c6a1f0fa29991e9d9e1b51e737e9161e /plugins/Dbx_kyoto/src/dbintf.h | |
parent | 340d879890f5099c21e36fc147d6432a1ac050bf (diff) |
fix for custom sorting procedures
git-svn-id: http://svn.miranda-ng.org/main/trunk@12605 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dbx_kyoto/src/dbintf.h')
-rw-r--r-- | plugins/Dbx_kyoto/src/dbintf.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/Dbx_kyoto/src/dbintf.h b/plugins/Dbx_kyoto/src/dbintf.h index 3d05288d26..9e75bd2804 100644 --- a/plugins/Dbx_kyoto/src/dbintf.h +++ b/plugins/Dbx_kyoto/src/dbintf.h @@ -99,14 +99,13 @@ struct DBEvent struct DBEventSortingKey
{
- DWORD dwContactId, ts, dwEventId;
+ uint32_t dwContactId, ts, dwEventId;
};
struct DBSettingSortingKey
{
- DWORD dwContactID;
- DWORD dwOfsModule;
- char szSettingName[100];
+ uint32_t dwContactID, dwOfsModule;
+ char szSettingName[100];
};
struct DBCachedContact : public DBCachedContactBase
|