submitting just because I want to move these files
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3515 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
a19f907b32
commit
b7e5fb6ef2
|
@ -21,6 +21,7 @@
|
|||
#include "HW/Memmap.h" // for Write_U32
|
||||
#include "Common.h"
|
||||
#include "StringUtil.h"
|
||||
#include "Debugger/DebugInterface.h"
|
||||
|
||||
#include "Host.h"
|
||||
#include "CodeView.h"
|
||||
|
|
|
@ -20,14 +20,14 @@
|
|||
|
||||
#include "Debugger.h"
|
||||
#include "Common.h"
|
||||
#include "Debugger/DebugInterface.h"
|
||||
|
||||
#include <vector>
|
||||
|
||||
DECLARE_EVENT_TYPE(wxEVT_CODEVIEW_CHANGE, -1);
|
||||
|
||||
class CCodeView
|
||||
: public wxControl
|
||||
class DebugInterface;
|
||||
|
||||
class CCodeView : public wxControl
|
||||
{
|
||||
public:
|
||||
CCodeView(DebugInterface* debuginterface, wxWindow* parent, wxWindowID Id = -1, const wxSize& Size = wxDefaultSize);
|
||||
|
@ -58,7 +58,6 @@ class CCodeView
|
|||
}
|
||||
|
||||
private:
|
||||
|
||||
void RaiseEvent();
|
||||
int YToAddress(int y);
|
||||
|
||||
|
@ -66,7 +65,6 @@ class CCodeView
|
|||
|
||||
void redraw() {Refresh();}
|
||||
|
||||
|
||||
DebugInterface* debugger;
|
||||
|
||||
int curAddress;
|
||||
|
|
Loading…
Reference in New Issue