From: Vadim Zeitlin Date: Mon, 23 Aug 2010 18:54:59 +0000 (+0000) Subject: Compilation fix: forward declare wxTextEntry in unit tests code. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/39f3816783dc4ba2d112a75234d13da6c9d58b1d Compilation fix: forward declare wxTextEntry in unit tests code. This should fix tests compilation on the build bot Mac OS X slaves. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65393 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/controls/textentrytest.h b/tests/controls/textentrytest.h index 928f848591..39be48c97f 100644 --- a/tests/controls/textentrytest.h +++ b/tests/controls/textentrytest.h @@ -10,6 +10,8 @@ #ifndef _WX_TESTS_CONTROLS_TEXTENTRYTEST_H_ #define _WX_TESTS_CONTROLS_TEXTENTRYTEST_H_ +class WXDLLIMPEXP_FWD_CORE wxTextEntry; + // ---------------------------------------------------------------------------- // abstract base class testing wxTextEntry methods // ----------------------------------------------------------------------------