summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_disco.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-07-20 18:37:03 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-07-20 18:37:03 +0000
commit4ad5767f652e0ffd3ebf7df8d8f62a682277faa1 (patch)
tree009f4d4267d0d4e451b74140125b5816701860fb /protocols/JabberG/src/jabber_disco.h
parent8761e793032de3e266a0cb9582327367c6172467 (diff)
- numerous fixes for ineffective xmlGetText() calls;
- common picture type detection code extracted to the separate function; - code cleanup git-svn-id: http://svn.miranda-ng.org/main/trunk@5431 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_disco.h')
-rw-r--r--protocols/JabberG/src/jabber_disco.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/protocols/JabberG/src/jabber_disco.h b/protocols/JabberG/src/jabber_disco.h
index efd9d453bf..31818912c3 100644
--- a/protocols/JabberG/src/jabber_disco.h
+++ b/protocols/JabberG/src/jabber_disco.h
@@ -56,15 +56,15 @@ public:
if (m_pNext)
delete m_pNext;
}
- TCHAR* GetCategory()
+ TCHAR *GetCategory()
{
return m_szCategory;
}
- TCHAR* GetType()
+ TCHAR *GetType()
{
return m_szType;
}
- TCHAR* GetName()
+ TCHAR *GetName()
{
return m_szName;
}
@@ -98,7 +98,7 @@ public:
if (m_pNext)
delete m_pNext;
}
- TCHAR* GetVar()
+ TCHAR *GetVar()
{
return m_szVar;
}
@@ -233,7 +233,7 @@ public:
replaceStrT(m_szJid, szJid);
return TRUE;
}
- TCHAR* GetJid()
+ TCHAR *GetJid()
{
return m_szJid;
}
@@ -242,11 +242,11 @@ public:
replaceStrT(m_szNode, szNode);
return TRUE;
}
- TCHAR* GetNode()
+ TCHAR *GetNode()
{
return m_szNode;
}
- TCHAR* GetName()
+ TCHAR *GetName()
{
return m_szName;
}