diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-28 18:08:17 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-28 18:08:17 +0000 |
commit | 095608f5e98292aa7fe82a075e7e867fc4dcd467 (patch) | |
tree | 33fe413cce0afe3a1512a326a3ebd50ca95374db /plugins/Clist_mw/src/clui.cpp | |
parent | f5939506ebe963f4041506d9e8af021cb52161a1 (diff) |
initial settings for clist_mw & clist_nicer
git-svn-id: http://svn.miranda-ng.org/main/trunk@7935 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_mw/src/clui.cpp')
-rw-r--r-- | plugins/Clist_mw/src/clui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Clist_mw/src/clui.cpp b/plugins/Clist_mw/src/clui.cpp index 9e8882ec55..c87b62c6ae 100644 --- a/plugins/Clist_mw/src/clui.cpp +++ b/plugins/Clist_mw/src/clui.cpp @@ -209,7 +209,7 @@ void RegisterProtoIcons (char *protoname) for (i = 0;i<8;i++)
{
mir_snprintf(buf, SIZEOF(buf), "%s #%d", protoname, i);
- mir_snprintf(buf2, SIZEOF(buf2), "Contact List/Connection Icons %s", protoname);
+ mir_snprintf(buf2, SIZEOF(buf2), "Contact list/Connection Icons %s", protoname);
LoadIconFromExternalFile(NULL,i,TRUE,TRUE,buf,buf2,buf,0,GetConnectingIconForProto_DLL(protoname,i));
}
@@ -269,7 +269,7 @@ HICON GetConnectingIconForProto(char *szProto,int b) char buf[256];
mir_snprintf(buf, SIZEOF(buf), "%s #%d", szProto, b);
- hIcon = LoadIconFromExternalFile(NULL,b,TRUE,FALSE,buf,"Contact List/Connection Icons",buf,0,NULL);
+ hIcon = LoadIconFromExternalFile(NULL,b,TRUE,FALSE,buf,"Contact list/Connection icons",buf,0,NULL);
if (hIcon == NULL) return (GetConnectingIconForProto_DLL(szProto,b));
return (CopyIcon(hIcon));
}
|