From 95d00805e0c50ec408a04a04431f6a7c91ce38b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?W=C5=82odzimierz=20Skiba?= Date: Thu, 26 Jan 2006 18:59:49 +0000 Subject: [PATCH] #include moved to module. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37165 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/generic/busyinfo.h | 2 -- src/generic/busyinfo.cpp | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/include/wx/generic/busyinfo.h b/include/wx/generic/busyinfo.h index 143d7bd375..0151a76b3b 100644 --- a/include/wx/generic/busyinfo.h +++ b/include/wx/generic/busyinfo.h @@ -12,8 +12,6 @@ #include "wx/defs.h" -#include "wx/frame.h" - #if wxUSE_BUSYINFO class WXDLLIMPEXP_CORE wxFrame; diff --git a/src/generic/busyinfo.cpp b/src/generic/busyinfo.cpp index e11108364a..f010b2fa67 100644 --- a/src/generic/busyinfo.cpp +++ b/src/generic/busyinfo.cpp @@ -17,6 +17,7 @@ // for all others, include the necessary headers #ifndef WX_PRECOMP + #include "wx/frame.h" #include "wx/stattext.h" #include "wx/panel.h" #include "wx/utils.h"