Debugger: Fix incorrect indentation.
This commit is contained in:
@@ -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:
|
||||||
|
|||||||
Reference in New Issue
Block a user