summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp
diff options
context:
space:
mode:
authorspycrab <spycrab@users.noreply.github.com>2018-04-28 12:50:47 +0200
committerspycrab <spycrab@users.noreply.github.com>2018-06-26 20:50:39 +0200
commit44b22c90df9c05d18a34667dc41e8d05af24683f (patch)
tree8826f2aa3ce04e68025d8b690affc0b5331318ff /Source/Core/DolphinWX/Debugger/RegisterWindow.cpp
parentbeeb6754d2c653c05ab5ed7def0abbfa8fb0e9c4 (diff)
Remove DolphinWX
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();
-}