From a993efb0503615efb7a3bcdce1ce91575448e789 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 10 Jul 2012 12:33:30 +0000 Subject: - tooltips for TopToolbar buttons - replaceStr/replaceStrW moved to mir_core git-svn-id: http://svn.miranda-ng.org/main/trunk@886 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/JabberG/jabber_disco.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'protocols/JabberG/jabber_disco.h') diff --git a/protocols/JabberG/jabber_disco.h b/protocols/JabberG/jabber_disco.h index 583bc61f4c..79df12781e 100644 --- a/protocols/JabberG/jabber_disco.h +++ b/protocols/JabberG/jabber_disco.h @@ -155,11 +155,11 @@ public: } BOOL RemoveAll() { - replaceStr( m_szJid, NULL ); - replaceStr( m_szNode, NULL ); - replaceStr( m_szName, NULL ); - replaceStr( m_szInfoError, NULL ); - replaceStr( m_szItemsError, NULL ); + replaceStrT( m_szJid, NULL ); + replaceStrT( m_szNode, NULL ); + replaceStrT( m_szName, NULL ); + replaceStrT( m_szInfoError, NULL ); + replaceStrT( m_szItemsError, NULL ); if ( m_pIdentities ) delete m_pIdentities; m_pIdentities = NULL; @@ -181,8 +181,8 @@ public: } BOOL ResetInfo() { - replaceStr( m_szInfoError, NULL ); - replaceStr( m_szItemsError, NULL ); + replaceStrT( m_szInfoError, NULL ); + replaceStrT( m_szItemsError, NULL ); if ( m_pIdentities ) delete m_pIdentities; m_pIdentities = NULL; @@ -229,7 +229,7 @@ public: } BOOL SetJid(TCHAR *szJid) { - replaceStr(m_szJid, szJid); + replaceStrT(m_szJid, szJid); return TRUE; } TCHAR* GetJid() @@ -238,7 +238,7 @@ public: } BOOL SetNode(TCHAR *szNode) { - replaceStr(m_szNode, szNode); + replaceStrT(m_szNode, szNode); return TRUE; } TCHAR* GetNode() @@ -347,12 +347,12 @@ public: } BOOL SetItemsRequestErrorText(TCHAR *szError) { - replaceStr(m_szItemsError, szError); + replaceStrT(m_szItemsError, szError); return TRUE; } BOOL SetInfoRequestErrorText(TCHAR *szError) { - replaceStr(m_szInfoError, szError); + replaceStrT(m_szInfoError, szError); return TRUE; } BOOL GetTooltipText(TCHAR *szText, int nMaxLength) -- cgit v1.2.3