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 /src/modules/clist/contacts.cpp | |
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 'src/modules/clist/contacts.cpp')
-rw-r--r-- | src/modules/clist/contacts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/clist/contacts.cpp b/src/modules/clist/contacts.cpp index 9385b2dc5e..597a217199 100644 --- a/src/modules/clist/contacts.cpp +++ b/src/modules/clist/contacts.cpp @@ -335,7 +335,7 @@ static INT_PTR GetContactInfo(WPARAM, LPARAM lParam) { break;
case CNF_TIMEZONE: {
- HANDLE hTz = tmi.createByContact(ci->hContact, TZF_KNOWNONLY);
+ HANDLE hTz = tmi.createByContact(ci->hContact, 0, TZF_KNOWNONLY);
if (hTz)
{
LPTIME_ZONE_INFORMATION tzi = tmi.getTzi(hTz);
|