DolphinWX: Relocate the address search into the code window

It's only function is in this pane. Leaving it on the main application toolbar not only looks gross, but subverts what a user might think it applies to.
This commit is contained in:
Lioncash
2015-02-25 00:06:45 -05:00
parent fd11f8fd29
commit ce4b73388a
2 changed files with 17 additions and 9 deletions

View File

@ -29,10 +29,11 @@ class DSPDebuggerLLE;
class GFXDebuggerPanel;
struct SCoreStartupParameter;
class wxToolBar;
class wxAuiToolBar;
class wxListBox;
class wxMenu;
class wxMenuBar;
class wxToolBar;
class CCodeWindow : public wxPanel
{
@ -136,5 +137,6 @@ private:
wxListBox* calls;
Common::Event sync_event;
wxAuiManager m_aui_manager;
wxAuiManager m_aui_manager;
wxAuiToolBar* m_aui_toolbar;
};