diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-10 12:33:30 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-10 12:33:30 +0000 |
commit | a993efb0503615efb7a3bcdce1ce91575448e789 (patch) | |
tree | 9a48d68b77bb01a61cf28e5e8c546f142ab0e49a /protocols/JabberG/jabber_iqid.cpp | |
parent | 679f5352ac3ff2b3f098a502042d3359d2240415 (diff) |
- 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
Diffstat (limited to 'protocols/JabberG/jabber_iqid.cpp')
-rw-r--r-- | protocols/JabberG/jabber_iqid.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/JabberG/jabber_iqid.cpp b/protocols/JabberG/jabber_iqid.cpp index e90fdfcbc6..dcc7f9c6ee 100644 --- a/protocols/JabberG/jabber_iqid.cpp +++ b/protocols/JabberG/jabber_iqid.cpp @@ -428,7 +428,7 @@ void CJabberProto::OnIqResultGetRoster( HXML iqNode, CJabberIqInfo* pInfo ) mir_free( item->nick ); item->nick = nick;
HXML groupNode = xmlGetChild( itemNode , "group" );
- replaceStr( item->group, ( groupNode ) ? xmlGetText( groupNode ) : NULL );
+ replaceStrT( item->group, ( groupNode ) ? xmlGetText( groupNode ) : NULL );
// check group delimiters:
if ( item->group && szGroupDelimeter ) {
@@ -710,7 +710,7 @@ LBL_Ret: hasPhoto = TRUE;
if ( item->photoFileName )
DeleteFile( item->photoFileName );
- replaceStr( item->photoFileName, szAvatarFileName );
+ replaceStrT( item->photoFileName, szAvatarFileName );
Log( "Contact's picture saved to " TCHAR_STR_PARAM, szAvatarFileName );
if (JGetWord( hContact, "Status", ID_STATUS_OFFLINE ) == ID_STATUS_OFFLINE) {
@@ -1696,7 +1696,7 @@ void CJabberProto::OnIqResultLastActivity( HXML iqNode, CJabberIqInfo* pInfo ) LPCTSTR szLastStatusMessage = XPathT( iqNode, "query[@xmlns='jabber:iq:last']" );
if ( szLastStatusMessage ) // replace only if it exists
- replaceStr( r->statusMessage, szLastStatusMessage );
+ replaceStrT( r->statusMessage, szLastStatusMessage );
}
r->idleStartTime = lastActivity;
|