diff options
author | George Hazan <ghazan@miranda.im> | 2017-03-06 13:51:43 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-03-06 13:51:43 +0300 |
commit | 2baf1b9fc764b59f963f94faf01cbed28622717a (patch) | |
tree | 819beadce3ab775e584430f3fd12f4e6722a02c0 /plugins/TabSRMM/src/tabctrl.cpp | |
parent | ac92ec1a55354e57b8cc6d4fd77aa2e75a896242 (diff) |
TNewWindowData - unneeded structure removed
Diffstat (limited to 'plugins/TabSRMM/src/tabctrl.cpp')
-rw-r--r-- | plugins/TabSRMM/src/tabctrl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TabSRMM/src/tabctrl.cpp b/plugins/TabSRMM/src/tabctrl.cpp index ec39dfb404..b57e66b3f1 100644 --- a/plugins/TabSRMM/src/tabctrl.cpp +++ b/plugins/TabSRMM/src/tabctrl.cpp @@ -615,7 +615,7 @@ static void PaintWorker(HWND hwnd, TabControlData *tabdat) InvalidateRect(hwnd, NULL, FALSE);
tabdat->iHoveredTabIndex = hotItem;
- TCITEM tci = { 0 };
+ TCITEM tci = {};
tci.mask = TCIF_PARAM;
tabdat->fAeroTabs = (CSkin::m_fAeroSkinsValid && (isAero || PluginConfig.m_fillColor)) ? TRUE : FALSE;
@@ -1258,7 +1258,7 @@ static LRESULT CALLBACK TabControlSubclassProc(HWND hwnd, UINT msg, WPARAM wPara ti.cbSize = sizeof(ti);
ti.ptCursor = pt;
- TCITEM item = { 0 };
+ TCITEM item = {};
item.mask = TCIF_PARAM;
int nItem = GetTabItemFromMouse(hwnd, &pt);
if (nItem >= 0 && nItem < TabCtrl_GetItemCount(hwnd)) {
|