[haiku-commits] haiku: hrev45895 - src/apps/debugger/user_interface/gui/team_window

  • From: anevilyak@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 23 Jul 2013 05:03:19 +0200 (CEST)

hrev45895 adds 1 changeset to branch 'master'
old head: a385c68ad7cbda21a5963ab2990c3c8b214696f3
new head: 79a2f0c70c6a13c5454b9b7699c14559f5739396
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=79a2f0c+%5Ea385c68

----------------------------------------------------------------------------

79a2f0c: Debugger: Fix insets in BreakConditionConfigWindow.

                                      [ Rene Gollent <anevilyak@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev45895
Commit:      79a2f0c70c6a13c5454b9b7699c14559f5739396
URL:         http://cgit.haiku-os.org/haiku/commit/?id=79a2f0c
Author:      Rene Gollent <anevilyak@xxxxxxxxx>
Date:        Tue Jul 23 03:00:35 2013 UTC

----------------------------------------------------------------------------

1 file changed, 2 insertions(+), 2 deletions(-)
.../user_interface/gui/team_window/BreakConditionConfigWindow.cpp | 4 ++--

----------------------------------------------------------------------------

diff --git 
a/src/apps/debugger/user_interface/gui/team_window/BreakConditionConfigWindow.cpp
 
b/src/apps/debugger/user_interface/gui/team_window/BreakConditionConfigWindow.cpp
index e1379aa..f750f82 100644
--- 
a/src/apps/debugger/user_interface/gui/team_window/BreakConditionConfigWindow.cpp
+++ 
b/src/apps/debugger/user_interface/gui/team_window/BreakConditionConfigWindow.cpp
@@ -275,8 +275,8 @@ BreakConditionConfigWindow::_Init()
 {
        fExceptionSettingsBox = new BBox("exceptionBox");
        fExceptionSettingsBox->SetLabel("Exceptions");
-       fExceptionSettingsBox->AddChild(BLayoutBuilder::Group<>(B_VERTICAL,
-                       B_USE_DEFAULT_SPACING)
+       fExceptionSettingsBox->AddChild(BLayoutBuilder::Group<>(B_VERTICAL)
+               .SetInsets(B_USE_DEFAULT_SPACING)
                .Add(fExceptionThrown = new BCheckBox("exceptionThrown",
                        "Stop when an exception is thrown",
                        new BMessage(MSG_STOP_ON_THROWN_EXCEPTION_CHANGED)))


Other related posts:

  • » [haiku-commits] haiku: hrev45895 - src/apps/debugger/user_interface/gui/team_window - anevilyak