diff options
| author | Rene Gollent <anevilyak@gmail.com> | 2012-07-14 10:40:44 -0400 |
|---|---|---|
| committer | Rene Gollent <anevilyak@gmail.com> | 2012-07-14 10:40:44 -0400 |
| commit | 2a8e9bb83d29cb06a5846ddc42fa1606d831a597 (patch) | |
| tree | ba52713fa689a9f478485a8e2761cd8784dd10be | |
| parent | c22cb42c69cdec8f3c0e4871f00e66995bd19568 (diff) | |
Fix missing break statement. CID 611232.hrev44336
| -rw-r--r-- | src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp b/src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp index f8d7f772cf..61636f8531 100644 --- a/src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp +++ b/src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp @@ -238,6 +238,7 @@ TeamWindow::MessageReceived(BMessage* message) { _SaveInspectorSettings(CurrentMessage()); fInspectorWindow = NULL; + break; } case B_REFS_RECEIVED: |
