From 54bd95803955340f90339145e5fdcb01da0dbd1d Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Fri, 5 Jul 2013 09:51:44 -0400 Subject: [PATCH] Cleanups, no functional change. --- .../user_interface/gui/team_window/BreakpointsView.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/apps/debugger/user_interface/gui/team_window/BreakpointsView.cpp b/src/apps/debugger/user_interface/gui/team_window/BreakpointsView.cpp index dc44ace82d..1f047cfb54 100644 --- a/src/apps/debugger/user_interface/gui/team_window/BreakpointsView.cpp +++ b/src/apps/debugger/user_interface/gui/team_window/BreakpointsView.cpp @@ -171,13 +171,13 @@ BreakpointsView::_Init() .Add(fToggleBreakpointButton = new BButton("Toggle")) .End(); - fConfigureExceptionsButton->SetMessage(new BMessage( - MSG_SHOW_EXCEPTION_CONFIG_WINDOW)); + fConfigureExceptionsButton->SetMessage( + new BMessage(MSG_SHOW_EXCEPTION_CONFIG_WINDOW)); fToggleBreakpointButton->SetMessage(new BMessage(MSG_ENABLE_BREAKPOINT)); fRemoveBreakpointButton->SetMessage(new BMessage(MSG_CLEAR_BREAKPOINT)); fStopOnImageLoadCheckBox->SetMessage(new BMessage(MSG_STOP_ON_IMAGE_LOAD)); - fStopOnImageLoadCheckBox->SetExplicitAlignment(BAlignment( - B_ALIGN_HORIZONTAL_UNSET, B_ALIGN_VERTICAL_CENTER)); + fStopOnImageLoadCheckBox->SetExplicitAlignment( + BAlignment(B_ALIGN_HORIZONTAL_UNSET, B_ALIGN_VERTICAL_CENTER)); _UpdateButtons(); }