From: Vadim Zeitlin Date: Thu, 18 Sep 2003 15:52:34 +0000 (+0000) Subject: missing headers for !USE_PCH compilation X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/532c773634cccf5c19f42aac5d2425ed3e7bb12a missing headers for !USE_PCH compilation git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23678 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/except/except.cpp b/samples/except/except.cpp index 11972994af..6f8a0acbbe 100644 --- a/samples/except/except.cpp +++ b/samples/except/except.cpp @@ -27,9 +27,12 @@ // for all others, include the necessary headers (this file is usually all you // need because it includes almost all "standard" wxWindows headers) #ifndef WX_PRECOMP + #include "wx/log.h" + #include "wx/app.h" #include "wx/frame.h" #include "wx/dialog.h" + #include "wx/menu.h" #include "wx/button.h" #include "wx/sizer.h"