From e5311460a9324bd69b49cd9879755526a869ee83 Mon Sep 17 00:00:00 2001 From: Soren Jorvang Date: Sun, 5 Dec 2010 15:36:08 +0000 Subject: [PATCH] Earlier versions of wxWidgets do not implicitly include . git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6527 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DebuggerWX/Src/BreakpointDlg.cpp | 2 ++ Source/Core/DebuggerWX/Src/BreakpointView.cpp | 7 ++++--- Source/Core/DebuggerWX/Src/BreakpointWindow.cpp | 2 ++ Source/Core/DebuggerWX/Src/BreakpointWindow.h | 2 -- Source/Core/DebuggerWX/Src/CodeWindow.cpp | 1 + 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Source/Core/DebuggerWX/Src/BreakpointDlg.cpp b/Source/Core/DebuggerWX/Src/BreakpointDlg.cpp index 8764f77aad..48d5fabaae 100644 --- a/Source/Core/DebuggerWX/Src/BreakpointDlg.cpp +++ b/Source/Core/DebuggerWX/Src/BreakpointDlg.cpp @@ -15,6 +15,8 @@ // Official SVN repository and contact information can be found at // http://code.google.com/p/dolphin-emu/ +#include + #include "Common.h" #include "Host.h" #include "StringUtil.h" diff --git a/Source/Core/DebuggerWX/Src/BreakpointView.cpp b/Source/Core/DebuggerWX/Src/BreakpointView.cpp index 3a7f8c5537..7da72dd6dc 100644 --- a/Source/Core/DebuggerWX/Src/BreakpointView.cpp +++ b/Source/Core/DebuggerWX/Src/BreakpointView.cpp @@ -15,6 +15,10 @@ // Official SVN repository and contact information can be found at // http://code.google.com/p/dolphin-emu/ +#include +#include +#include + #include "BreakpointView.h" #include "DebuggerUIUtil.h" #include "Debugger/Debugger_SymbolMap.h" @@ -22,9 +26,6 @@ #include "PowerPC/PowerPC.h" #include "HW/Memmap.h" -#include -#include - extern "C" { #include "../resources/toolbar_add_breakpoint.c" #include "../resources/toolbar_add_memorycheck.c" diff --git a/Source/Core/DebuggerWX/Src/BreakpointWindow.cpp b/Source/Core/DebuggerWX/Src/BreakpointWindow.cpp index caa5f8ff35..522a81c853 100644 --- a/Source/Core/DebuggerWX/Src/BreakpointWindow.cpp +++ b/Source/Core/DebuggerWX/Src/BreakpointWindow.cpp @@ -15,6 +15,8 @@ // Official SVN repository and contact information can be found at // http://code.google.com/p/dolphin-emu/ +#include + #include "BreakpointView.h" #include "CodeWindow.h" #include "HW/Memmap.h" diff --git a/Source/Core/DebuggerWX/Src/BreakpointWindow.h b/Source/Core/DebuggerWX/Src/BreakpointWindow.h index 635a7ff4ce..9c30ecadf1 100644 --- a/Source/Core/DebuggerWX/Src/BreakpointWindow.h +++ b/Source/Core/DebuggerWX/Src/BreakpointWindow.h @@ -18,8 +18,6 @@ #ifndef __BREAKPOINTWINDOW_h__ #define __BREAKPOINTWINDOW_h__ -#include - class CBreakPointView; class CBreakPointBar; class CCodeWindow; diff --git a/Source/Core/DebuggerWX/Src/CodeWindow.cpp b/Source/Core/DebuggerWX/Src/CodeWindow.cpp index 7250b2eba0..52ba9e6678 100644 --- a/Source/Core/DebuggerWX/Src/CodeWindow.cpp +++ b/Source/Core/DebuggerWX/Src/CodeWindow.cpp @@ -18,6 +18,7 @@ // Include #include "Common.h" +#include #include #include #include