diff options
author | George Hazan <george.hazan@gmail.com> | 2012-12-01 21:07:34 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-12-01 21:07:34 +0000 |
commit | 66ddfd87a0e55b9534b8669392bb0cdee2e9fa3b (patch) | |
tree | 6075890e2ba60622069d5179f280d64b225c9be9 /plugins/Clist_mw/src/clui.cpp | |
parent | 1860018b201d995ed051c0affb72d5a1d09fa02e (diff) |
SKINICONDESC initialization - end-II :)
git-svn-id: http://svn.miranda-ng.org/main/trunk@2599 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_mw/src/clui.cpp')
-rw-r--r-- | plugins/Clist_mw/src/clui.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/Clist_mw/src/clui.cpp b/plugins/Clist_mw/src/clui.cpp index 19abd6f0a4..aadd15cdbd 100644 --- a/plugins/Clist_mw/src/clui.cpp +++ b/plugins/Clist_mw/src/clui.cpp @@ -179,7 +179,6 @@ HICON LoadIconFromExternalFile(char *filename,int i,boolean UseLibrary,boolean r {
char szPath[MAX_PATH],szMyPath[MAX_PATH], szFullPath[MAX_PATH],*str;
HICON hIcon = NULL;
- SKINICONDESC sid = {0};
memset(szMyPath,0,SIZEOF(szMyPath));
memset(szFullPath,0,SIZEOF(szFullPath));
@@ -199,7 +198,7 @@ HICON LoadIconFromExternalFile(char *filename,int i,boolean UseLibrary,boolean r }
else {
if (registerit && IconName != NULL && SectName != NULL) {
- sid.cbSize = sizeof(sid);
+ SKINICONDESC sid = { sizeof(sid) };
sid.pszSection = SectName;
sid.pszName = IconName;
sid.pszDescription = Description;
|