From 497c7dffd1554afd075bef81c73b40a841b8a98d Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 12 Dec 2008 16:21:49 +0000 Subject: [PATCH] compilation fixes for Unix build _with_ PCH git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57287 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/controls/headerctrltest.cpp | 3 ++- tests/controls/listctrltest.cpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/controls/headerctrltest.cpp b/tests/controls/headerctrltest.cpp index 9fcb30be26..1f1da7d8ba 100644 --- a/tests/controls/headerctrltest.cpp +++ b/tests/controls/headerctrltest.cpp @@ -19,9 +19,10 @@ #ifndef WX_PRECOMP #include "wx/app.h" - #include "wx/headerctrl.h" #endif // WX_PRECOMP +#include "wx/headerctrl.h" + // ---------------------------------------------------------------------------- // test class // ---------------------------------------------------------------------------- diff --git a/tests/controls/listctrltest.cpp b/tests/controls/listctrltest.cpp index 21325d6957..501d547f65 100644 --- a/tests/controls/listctrltest.cpp +++ b/tests/controls/listctrltest.cpp @@ -19,9 +19,10 @@ #ifndef WX_PRECOMP #include "wx/app.h" - #include "wx/listctrl.h" #endif // WX_PRECOMP +#include "wx/listctrl.h" + // ---------------------------------------------------------------------------- // test class // ----------------------------------------------------------------------------