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_bookmarks.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'protocols/JabberG/jabber_bookmarks.cpp') diff --git a/protocols/JabberG/jabber_bookmarks.cpp b/protocols/JabberG/jabber_bookmarks.cpp index f3923e04de..9ad9baf91a 100644 --- a/protocols/JabberG/jabber_bookmarks.cpp +++ b/protocols/JabberG/jabber_bookmarks.cpp @@ -117,18 +117,18 @@ static INT_PTR CALLBACK JabberAddBookmarkDlgProc( HWND hwndDlg, UINT msg, WPARAM item->bUseResource = TRUE; if ( SendDlgItemMessage(hwndDlg, IDC_URL_RADIO, BM_GETCHECK,0, 0) == BST_CHECKED ) - replaceStr( item->type, _T( "url" )); + replaceStrT( item->type, _T( "url" )); else - replaceStr( item->type, _T( "conference" )); + replaceStrT( item->type, _T( "conference" )); GetDlgItemText( hwndDlg, IDC_NICK, text, SIZEOF( text )); - replaceStr( item->nick, text ); + replaceStrT( item->nick, text ); GetDlgItemText( hwndDlg, IDC_PASSWORD, text, SIZEOF( text )); - replaceStr( item->password, text ); + replaceStrT( item->password, text ); GetDlgItemText( hwndDlg, IDC_NAME, text, SIZEOF( text )); - replaceStr( item->name, ( text[0] == 0 ) ? roomJID : text ); + replaceStrT( item->name, ( text[0] == 0 ) ? roomJID : text ); item->bAutoJoin = (SendDlgItemMessage(hwndDlg, IDC_CHECK_BM_AUTOJOIN, BM_GETCHECK,0, 0) == BST_CHECKED ); { -- cgit v1.2.3