Cleanups, no functional change.

This commit is contained in:
Rene Gollent
2013-07-05 09:51:44 -04:00
parent 193c869185
commit 54bd958039
@@ -171,13 +171,13 @@ BreakpointsView::_Init()
.Add(fToggleBreakpointButton = new BButton("Toggle")) .Add(fToggleBreakpointButton = new BButton("Toggle"))
.End(); .End();
fConfigureExceptionsButton->SetMessage(new BMessage( fConfigureExceptionsButton->SetMessage(
MSG_SHOW_EXCEPTION_CONFIG_WINDOW)); new BMessage(MSG_SHOW_EXCEPTION_CONFIG_WINDOW));
fToggleBreakpointButton->SetMessage(new BMessage(MSG_ENABLE_BREAKPOINT)); fToggleBreakpointButton->SetMessage(new BMessage(MSG_ENABLE_BREAKPOINT));
fRemoveBreakpointButton->SetMessage(new BMessage(MSG_CLEAR_BREAKPOINT)); fRemoveBreakpointButton->SetMessage(new BMessage(MSG_CLEAR_BREAKPOINT));
fStopOnImageLoadCheckBox->SetMessage(new BMessage(MSG_STOP_ON_IMAGE_LOAD)); fStopOnImageLoadCheckBox->SetMessage(new BMessage(MSG_STOP_ON_IMAGE_LOAD));
fStopOnImageLoadCheckBox->SetExplicitAlignment(BAlignment( fStopOnImageLoadCheckBox->SetExplicitAlignment(
B_ALIGN_HORIZONTAL_UNSET, B_ALIGN_VERTICAL_CENTER)); BAlignment(B_ALIGN_HORIZONTAL_UNSET, B_ALIGN_VERTICAL_CENTER));
_UpdateButtons(); _UpdateButtons();
} }