From 7f0d0111c43773f69a09a97acf879bb39beabd28 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 7 Sep 2008 17:01:16 +0000 Subject: [PATCH] added missing wx/dcclient.h header for PCH-less compilation, removed several other unnecessary ones git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55512 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/graphicc.cpp | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/src/generic/graphicc.cpp b/src/generic/graphicc.cpp index 552f002b8b..1540753a93 100644 --- a/src/generic/graphicc.cpp +++ b/src/generic/graphicc.cpp @@ -12,33 +12,24 @@ #include "wx/wxprec.h" #ifdef __BORLANDC__ -#pragma hdrstop + #pragma hdrstop #endif #if wxUSE_GRAPHICS_CONTEXT -#include "wx/dc.h" - #ifndef WX_PRECOMP -#include "wx/image.h" -#include "wx/window.h" -#include "wx/dc.h" -#include "wx/utils.h" -#include "wx/dialog.h" -#include "wx/app.h" -#include "wx/bitmap.h" -#include "wx/dcmemory.h" -#include "wx/log.h" -#include "wx/icon.h" -#include "wx/dcprint.h" -#include "wx/module.h" + #include "wx/bitmap.h" + #include "wx/icon.h" + + #include "wx/dc.h" + #include "wx/dcclient.h" + #include "wx/dcmemory.h" + #include "wx/dcprint.h" #endif #include "wx/private/graphics.h" #include "wx/rawbmp.h" -#include - using namespace std; //----------------------------------------------------------------------------- -- 2.45.2