Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2014-10-10 13:53:06 +0400
committerXhmikosR <xhmikosr@gmail.com>2014-10-20 09:04:48 +0400
commit2a0054b97cfa1e434e83016b6c1d5a2fb555956f (patch)
tree859a3287533516c4ddde6e072653f928721adac7 /src/thirdparty/ResizableLib
parent4d265207e31cafb97a7c3953cf83db5f669cf9f2 (diff)
Initializer list order fixes.
Found with cppcheck (inconclusive enabled).
Diffstat (limited to 'src/thirdparty/ResizableLib')
-rw-r--r--src/thirdparty/ResizableLib/ResizableLayout.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/thirdparty/ResizableLib/ResizableLayout.h b/src/thirdparty/ResizableLib/ResizableLayout.h
index 9ab22af3a..9067ea0bf 100644
--- a/src/thirdparty/ResizableLib/ResizableLayout.h
+++ b/src/thirdparty/ResizableLib/ResizableLayout.h
@@ -72,9 +72,10 @@ protected:
LayoutInfo(HWND hwnd, SIZE tl_t, SIZE tl_m,
SIZE br_t, SIZE br_m, CString classname)
: hWnd(hwnd), nCallbackID(0),
- sWndClass(classname), bMsgSupport(FALSE),
+ sWndClass(classname),
sizeTypeTL(tl_t), sizeMarginTL(tl_m),
- sizeTypeBR(br_t), sizeMarginBR(br_m)
+ sizeTypeBR(br_t), sizeMarginBR(br_m),
+ bMsgSupport(FALSE)
{
memset(&properties, 0, sizeof properties);
}