diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-23 11:24:46 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-23 11:24:46 +0000 |
commit | cbb10e8c9089dfc99946ddc784afdb126e2128a8 (patch) | |
tree | 1ceb6f0343cf3cd0b4d446cc25a8ebaa9703fb09 | |
parent | 3745c826080f672366c17a28031db765efe08ff2 (diff) |
IRC icons' registration fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@1115 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | protocols/IRCG/options.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/IRCG/options.cpp b/protocols/IRCG/options.cpp index ae727d5443..69a991374b 100644 --- a/protocols/IRCG/options.cpp +++ b/protocols/IRCG/options.cpp @@ -225,7 +225,7 @@ void AddIcons(void) SKINICONDESC sid = {0};
sid.cbSize = sizeof(SKINICONDESC);
- sid.ptszSection = _T("Protocols/IRC");
+ sid.pszSection = "Protocols/IRC";
sid.ptszDefaultFile = szFile;
sid.flags = SIDF_PATH_TCHAR;
hIconLibItems = new HANDLE[ SIZEOF(iconList) ];
@@ -1959,4 +1959,4 @@ void InitServers() }
mir_free(szIniFile);
}
-}
\ No newline at end of file +}
|