summaryrefslogtreecommitdiff
path: root/protocols/JabberG/jabber_bookmarks.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-07-10 12:33:30 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-07-10 12:33:30 +0000
commita993efb0503615efb7a3bcdce1ce91575448e789 (patch)
tree9a48d68b77bb01a61cf28e5e8c546f142ab0e49a /protocols/JabberG/jabber_bookmarks.cpp
parent679f5352ac3ff2b3f098a502042d3359d2240415 (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_bookmarks.cpp')
-rw-r--r--protocols/JabberG/jabber_bookmarks.cpp10
1 files changed, 5 insertions, 5 deletions
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 );
{