Fix wxCompositeWindow compilation after the latest change.

SetSize() doesn't have any dependent parameters so call it via an explicit
"this->" to make it work with standard conforming compilers (and not MSVC).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77757 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2014-09-21 11:51:10 +00:00
parent f24d204984
commit 7172fdc01b

View File

@ -102,7 +102,7 @@ public:
// The child layout almost invariably depends on the layout direction,
// so redo it when it changes.
SetSize(-1, -1, -1, -1, wxSIZE_AUTO | wxSIZE_FORCE);
this->SetSize(-1, -1, -1, -1, wxSIZE_AUTO | wxSIZE_FORCE);
}
#if wxUSE_TOOLTIPS