From 7172fdc01bb3a4e35b5ce04cefb9383577f2b7c5 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 21 Sep 2014 11:51:10 +0000 Subject: [PATCH] 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 --- include/wx/compositewin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/compositewin.h b/include/wx/compositewin.h index 9236229fbc..9a3536854a 100644 --- a/include/wx/compositewin.h +++ b/include/wx/compositewin.h @@ -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