diff options
author | George Hazan <george.hazan@gmail.com> | 2014-06-15 19:42:00 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-06-15 19:42:00 +0000 |
commit | b370e21a0f5349cebe4273e3a9c025563074f1af (patch) | |
tree | fe7a2a6a3e661b07336c20776025b6b07cccfeee /plugins/TabSRMM | |
parent | deba5f68550f2b0100f85e317a148351ca72d221 (diff) |
attempt to fix hangouts in tabSRMM
git-svn-id: http://svn.miranda-ng.org/main/trunk@9513 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM')
-rw-r--r-- | plugins/TabSRMM/src/contactcache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/contactcache.h b/plugins/TabSRMM/src/contactcache.h index b0dc12e78e..74bb7c7853 100644 --- a/plugins/TabSRMM/src/contactcache.h +++ b/plugins/TabSRMM/src/contactcache.h @@ -77,7 +77,7 @@ struct CContactCache : public MZeroedObject const WORD getOldStatus() const { return m_wOldStatus; }
const TCHAR* getNick() const { return m_szNick; }
const MCONTACT getContact() const { return m_hContact; }
- const MCONTACT getActiveContact() const { return m_isMeta ? db_mc_getDefault(m_hContact) : m_hContact; }
+ const MCONTACT getActiveContact() const { return m_isMeta ? db_mc_getMostOnline(m_hContact) : m_hContact; }
const DWORD getIdleTS() const { return m_idleTS; }
const char* getProto() const { return cc->szProto; }
const char* getActiveProto() const { return m_isMeta ? (m_szMetaProto ? m_szMetaProto : cc->szProto) : cc->szProto; }
|