summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-08-30 18:20:13 -0400
committerLioncash <mathew1800@gmail.com>2014-08-30 18:20:13 -0400
commit2c7bcd0d048c2e298a5d1e94cb493c6d879f6dd9 (patch)
tree0159e4c50212488aca33dcff7dbe09ed4e251eed /Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp
parent77aef014a0352d819e8ea63bafb6262b9af485cb (diff)
parenteb535be8741fd8672b5db972ca43360ca14a9a78 (diff)
Merge pull request #911 from lioncash/braces
Clean up brace placements within the project.
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp')
-rw-r--r--Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp
index 9f3c081c16..a83413587d 100644
--- a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp
+++ b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp
@@ -377,7 +377,8 @@ void CCodeWindow::NotifyMapLoaded()
void CCodeWindow::OnSymbolListChange(wxCommandEvent& event)
{
int index = symbols->GetSelection();
- if (index >= 0) {
+ if (index >= 0)
+ {
Symbol* pSymbol = static_cast<Symbol *>(symbols->GetClientData(index));
if (pSymbol != nullptr)
{