diff options
author | George Hazan <george.hazan@gmail.com> | 2013-09-23 08:08:32 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-09-23 08:08:32 +0000 |
commit | 83181e39a7613a9ed00c6c7ddcbea59a340d491e (patch) | |
tree | 875f2c835adb77d2bd27d6a8566c005bc7507e2e /protocols/JabberG/src/jabber_list.h | |
parent | 4d048a498cfaf2eff47167714d37e11f451135de (diff) |
automatic allocator for a temp resource item
git-svn-id: http://svn.miranda-ng.org/main/trunk@6192 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_list.h')
-rw-r--r-- | protocols/JabberG/src/jabber_list.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_list.h b/protocols/JabberG/src/jabber_list.h index 08c82bbc1b..d7e9fe8f4d 100644 --- a/protocols/JabberG/src/jabber_list.h +++ b/protocols/JabberG/src/jabber_list.h @@ -157,7 +157,8 @@ struct JABBER_LIST_ITEM : public MZeroedObject JABBER_RESOURCE_STATUS
*m_pLastSeenResource, // resource which was last seen active
*m_pManualResource, // manually set resource
- *m_pItemResource; // resource for jids without /resource node
+ *m_pItemResource, // resource for jids without /resource node
+ *getTemp(); // allocates m_pItemResource if needed
JABBER_SUBSCRIPTION subscription;
TCHAR* group;
|