Debugger: Fix incorrect indentation.

This commit is contained in:
Rene Gollent
2016-12-05 18:18:04 -05:00
parent c521fed0da
commit c4b2191889
+7 -7
View File
@@ -330,19 +330,19 @@ Debugger::MessageReceived(BMessage* message)
switch (message->what) { switch (message->what) {
case MSG_SHOW_TEAMS_WINDOW: case MSG_SHOW_TEAMS_WINDOW:
{ {
if (fTeamsWindow) { if (fTeamsWindow) {
fTeamsWindow->Activate(true); fTeamsWindow->Activate(true);
break; break;
} }
try { try {
fTeamsWindow = TeamsWindow::Create(&fSettingsManager); fTeamsWindow = TeamsWindow::Create(&fSettingsManager);
if (fTeamsWindow != NULL) if (fTeamsWindow != NULL)
fTeamsWindow->Show(); fTeamsWindow->Show();
} catch (...) { } catch (...) {
// TODO: Notify the user! // TODO: Notify the user!
fprintf(stderr, "Error: Failed to create Teams window\n"); fprintf(stderr, "Error: Failed to create Teams window\n");
} }
break; break;
} }
case MSG_TEAMS_WINDOW_CLOSED: case MSG_TEAMS_WINDOW_CLOSED: