diff options
author | George Hazan <george.hazan@gmail.com> | 2014-02-16 18:07:34 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-02-16 18:07:34 +0000 |
commit | b3783bb50a312fa59d302aeede929377c18a6ec1 (patch) | |
tree | 30fafd914f38d378a3f472615a6cc3a9392e06e4 /plugins/Clist_modern | |
parent | a30dc859cf649443bf90da9ead7c110a63e7725e (diff) |
timezone api extended to support global settings
git-svn-id: http://svn.miranda-ng.org/main/trunk@8139 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern')
-rw-r--r-- | plugins/Clist_modern/src/modern_cachefuncs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_modern/src/modern_cachefuncs.cpp b/plugins/Clist_modern/src/modern_cachefuncs.cpp index 44415f83b4..8c9e5b4137 100644 --- a/plugins/Clist_modern/src/modern_cachefuncs.cpp +++ b/plugins/Clist_modern/src/modern_cachefuncs.cpp @@ -62,7 +62,7 @@ void Cache_GetTimezone(ClcData *dat, MCONTACT hContact) if (dat && dat->hWnd == pcli->hwndContactTree) {
DWORD flags = dat->contact_time_show_only_if_different ? TZF_DIFONLY : 0;
- pdnce->hTimeZone = tmi.createByContact ? tmi.createByContact(hContact, flags) : 0;
+ pdnce->hTimeZone = tmi.createByContact(hContact, 0, flags);
}
}
|