compilation fix for gcc-3.4
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27537 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -325,7 +325,8 @@ struct WinStruct : public T
|
|||||||
WinStruct()
|
WinStruct()
|
||||||
{
|
{
|
||||||
::ZeroMemory(this, sizeof(T));
|
::ZeroMemory(this, sizeof(T));
|
||||||
cbSize = sizeof(T);
|
// NB: gcc-3.4 would give syntax error without "this->"
|
||||||
|
this->cbSize = sizeof(T);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user