diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-09-19 19:09:44 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-09-19 19:09:44 +0000 |
commit | 7bfe94f4ff03137cf5e4dc6acbe856c53eb2909f (patch) | |
tree | 0ed2611a983ed80174c46fd91868e41fd521ea9b /protocols/JabberG | |
parent | 41de1ce748d969a65bbefc6987c98d4e0a5010a3 (diff) |
More correct version of previous commit (thanks Wishmaster)
git-svn-id: http://svn.miranda-ng.org/main/trunk@10529 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG')
-rw-r--r-- | protocols/JabberG/src/jabber_icolib.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_icolib.cpp b/protocols/JabberG/src/jabber_icolib.cpp index 4a19b1e1b8..e1d60fb20e 100644 --- a/protocols/JabberG/src/jabber_icolib.cpp +++ b/protocols/JabberG/src/jabber_icolib.cpp @@ -317,7 +317,7 @@ int CJabberProto::LoadAdvancedIcons(int iID) int first=-1;
HICON empty=LoadSmallIcon(NULL,MAKEINTRESOURCE(102));
- mir_sntprintf(Group, SIZEOF(Group), LPGENT("Status icons/%s/%S %s"), m_tszUserName, proto, TranslateT("transport"));
+ mir_sntprintf(Group, SIZEOF(Group), LPGENT("Status icons")_T("/%s/%S %s"), m_tszUserName, proto, TranslateT("transport"));
mir_snprintf(defFile, SIZEOF(defFile), "proto_%s.dll",proto);
if (!hAdvancedStatusIcon)
hAdvancedStatusIcon=(HIMAGELIST)CallService(MS_CLIST_GETICONSIMAGELIST,0,0);
|