summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/RegisterWindow.cpp')
-rw-r--r--Source/Core/DolphinWX/Debugger/RegisterWindow.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp b/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp
deleted file mode 100644
index b849eb86fe..0000000000
--- a/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright 2008 Dolphin Emulator Project
-// Licensed under GPLv2+
-// Refer to the license.txt file included.
-
-#include <cstddef>
-#include <wx/panel.h>
-#include <wx/sizer.h>
-
-#include "Core/PowerPC/PowerPC.h"
-#include "DolphinWX/Debugger/RegisterView.h"
-#include "DolphinWX/Debugger/RegisterWindow.h"
-
-CRegisterWindow::CRegisterWindow(wxWindow* parent, wxWindowID id, const wxPoint& position,
- const wxSize& size, long style, const wxString& name)
- : wxPanel(parent, id, position, size, style, name), m_GPRGridView(nullptr)
-{
- CreateGUIControls();
-}
-
-void CRegisterWindow::CreateGUIControls()
-{
- wxBoxSizer* sGrid = new wxBoxSizer(wxVERTICAL);
- m_GPRGridView = new CRegisterView(this);
- sGrid->Add(m_GPRGridView, 1, wxEXPAND);
- SetSizer(sGrid);
-
- NotifyUpdate();
-}
-
-void CRegisterWindow::NotifyUpdate()
-{
- if (m_GPRGridView != nullptr)
- m_GPRGridView->Repopulate();
-}