From 9fdb68d985ccec0223718e9e14958cf62c23d768 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 2 Apr 2008 13:51:30 +0000 Subject: [PATCH] wxMac compilation fix: must explicitly qualify non-dependent MacSetClipChildren() in wxScrolled::Create() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52981 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/scrolwin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/scrolwin.h b/include/wx/scrolwin.h index 570922a169..1aca7a9a66 100644 --- a/include/wx/scrolwin.h +++ b/include/wx/scrolwin.h @@ -306,7 +306,7 @@ public: m_targetWindow = this; #ifdef __WXMAC__ - MacSetClipChildren(true); + this->MacSetClipChildren(true); #endif this->Connect(wxEVT_PAINT, wxPaintEventHandler(wxScrolled::OnPaint));