mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
27d295ec7e
Changes: - MemoryWindow was cleaned up and gives more feedback on searches. Some bugs were fixed as well: - A complex bug that allowed tearing off tabs and opening multiple copies of a debug panel which lead to segfaults - Another segfault related to right-click menus on code/memory views when those tools were floating in their own window.
17 lines
320 B
C++
17 lines
320 B
C++
// Copyright 2008 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <wx/listctrl.h>
|
|
|
|
class CBreakPointView : public wxListCtrl
|
|
{
|
|
public:
|
|
CBreakPointView(wxWindow* parent, const wxWindowID id);
|
|
|
|
void Repopulate();
|
|
void DeleteCurrentSelection();
|
|
};
|