diff options
author | George Hazan <ghazan@miranda.im> | 2018-08-08 20:29:49 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-08-08 20:29:49 +0300 |
commit | 07ec5afdc9c5c027a438f378f5f208ffa9ebc1dd (patch) | |
tree | 28b4e6e854cac144fb20d8b2a5a05b3a85209118 /src/core | |
parent | 75dcbbdcd7402911c3eee41c05aa95dac18d7fa9 (diff) |
warning fix
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/stdclist/src/clcpaint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stdclist/src/clcpaint.cpp b/src/core/stdclist/src/clcpaint.cpp index a5808fa46c..8e24b60c79 100644 --- a/src/core/stdclist/src/clcpaint.cpp +++ b/src/core/stdclist/src/clcpaint.cpp @@ -230,7 +230,7 @@ void PaintClc(HWND hwnd, struct ClcData *dat, HDC hdc, RECT * rcPaint) int iImage = -1;
int selected = index == dat->selection && (dat->bShowSelAlways || dat->exStyle & CLS_EX_SHOWSELALWAYS || GetFocus() == hwnd) && cc->type != CLCIT_DIVIDER;
int hottrack = dat->exStyle & CLS_EX_TRACKSELECT && cc->type != CLCIT_DIVIDER && dat->iHotTrack == index;
- SIZE textSize, countsSize, spaceSize;
+ SIZE textSize, countsSize = {}, spaceSize = {};
int width, checkboxWidth;
// alternating grey
|