diff options
Diffstat (limited to 'plugins/Clist_mw/src/clcpaint.cpp')
-rw-r--r-- | plugins/Clist_mw/src/clcpaint.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Clist_mw/src/clcpaint.cpp b/plugins/Clist_mw/src/clcpaint.cpp index b4fc20850f..ee5e17fb53 100644 --- a/plugins/Clist_mw/src/clcpaint.cpp +++ b/plugins/Clist_mw/src/clcpaint.cpp @@ -151,7 +151,7 @@ void InternalPaintClc(HWND hwnd,struct ClcData *dat,HDC hdc,RECT *rcPaint) RECT clRect;
int y,indent,index,fontHeight, subindex, subident;
struct ClcContact *Drawing;
- struct ClcGroup *group;
+ ClcGroup *group;
HBITMAP hBmpOsb;
DWORD style = GetWindowLongPtr(hwnd,GWL_STYLE);
int status = GetGeneralisedStatus();
@@ -452,9 +452,9 @@ void InternalPaintClc(HWND hwnd,struct ClcData *dat,HDC hdc,RECT *rcPaint) else if (Drawing->type == CLCIT_GROUP) {
RECT rc;
if (szCounts[0]) {
- struct ClcGroup *clcg;
+ ClcGroup *clcg;
- clcg = (struct ClcGroup *)Drawing;
+ clcg = (ClcGroup *)Drawing;
fontHeight = dat->fontInfo[FONTID_GROUPS].fontHeight;
|