diff options
| author | Matthew Parlane <parlane@gmail.com> | 2014-03-08 15:50:34 +1300 |
|---|---|---|
| committer | Matthew Parlane <parlane@gmail.com> | 2014-03-08 15:50:34 +1300 |
| commit | 6704832f3d78988ca694c23d8ea0f1262cc37d58 (patch) | |
| tree | 291dacbc804ba38a5d2c31fcbbe1bf309d3d336e /Source/Core/DolphinWX/Debugger/MemoryView.cpp | |
| parent | ca6946bcbf8506668cfa60deb4648cad1a652487 (diff) | |
| parent | b2d47401b20483ef0217b272960803a6a2a335da (diff) | |
Merge pull request #139 from lioncash/wx-clean
Remove some superfluous arguments from some wx control creations
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/MemoryView.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/MemoryView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Debugger/MemoryView.cpp b/Source/Core/DolphinWX/Debugger/MemoryView.cpp index fb234743bf..862d186c52 100644 --- a/Source/Core/DolphinWX/Debugger/MemoryView.cpp +++ b/Source/Core/DolphinWX/Debugger/MemoryView.cpp @@ -55,7 +55,7 @@ BEGIN_EVENT_TABLE(CMemoryView, wxControl) END_EVENT_TABLE() CMemoryView::CMemoryView(DebugInterface* debuginterface, wxWindow* parent) - : wxControl(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize) + : wxControl(parent, wxID_ANY) , curAddress(debuginterface->GetPC()) , debugger(debuginterface) , align(debuginterface->GetInstructionSize(0)) |
