fixed bug in WinStruct<> ctor
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20594 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
bffa02ff6f
commit
5eae641dd6
@ -338,7 +338,8 @@ struct WinStruct : public T
|
|||||||
{
|
{
|
||||||
WinStruct()
|
WinStruct()
|
||||||
{
|
{
|
||||||
::ZeroMemory(this, cbSize = sizeof(T));
|
::ZeroMemory(this, sizeof(T));
|
||||||
|
cbSize = sizeof(T);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user