diff options
author | slotwin <slotwin@users.noreply.github.com> | 2014-05-31 14:06:32 +0000 |
---|---|---|
committer | slotwin <slotwin@users.noreply.github.com> | 2014-05-31 14:06:32 +0000 |
commit | abe57dd9c571cc80cf50aad3436e4d6f3cf421a2 (patch) | |
tree | ffe940ad0ed29d7b45d9d1df719a2906e9d6d93a /plugins/MyDetails/src/commons.h | |
parent | 89df71f0740a1fe0a0424e4c71c2a15e8bfe8dc7 (diff) |
MyDetails plugin: proper capitalization in options and menus
option page - improved display of disabled options
code cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@9377 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MyDetails/src/commons.h')
-rw-r--r-- | plugins/MyDetails/src/commons.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MyDetails/src/commons.h b/plugins/MyDetails/src/commons.h index dca54c9d74..408feb8ba8 100644 --- a/plugins/MyDetails/src/commons.h +++ b/plugins/MyDetails/src/commons.h @@ -78,8 +78,8 @@ static __inline int DRAW_TEXT(HDC hDC, LPCTSTR lpString, int nCount, LPRECT lpRe if (!opts.replace_smileys)
return DrawText(hDC, lpString, nCount, lpRect, uFormat);
- return Smileys_DrawText(hDC, lpString, nCount, lpRect, uFormat | (opts.resize_smileys ? DT_RESIZE_SMILEYS : 0),
- opts.use_contact_list_smileys ? "clist" : protocol, NULL);
+ return Smileys_DrawText(hDC, lpString, nCount, lpRect, uFormat | (opts.resize_smileys ? DT_RESIZE_SMILEYS : 0),
+ opts.use_contact_list_smileys ? "clist" : protocol, NULL);
}
#endif // __COMMONS_H__
|