* applying patch by PulkoMandy that fix a couple of styleguide issues

(missing spaces after commas) that were pointed out by Stephan

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30636 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Tappe 2009-05-05 18:17:16 +00:00
parent 738ed6561d
commit a6fb7929ba

View File

@ -40,7 +40,7 @@ LocaleWindow::LocaleWindow(BRect rect)
BView *tab = new BView("Language", B_WILL_DRAW);
tab->SetViewColor(tabView->ViewColor());
tab->SetLayout(new BGroupLayout(B_VERTICAL,10));
tab->SetLayout(new BGroupLayout(B_VERTICAL, 10));
tabView->AddTab(tab);
{
@ -49,7 +49,7 @@ LocaleWindow::LocaleWindow(BRect rect)
BScrollView *scrollView = new BScrollView("scroller", listView,
0, false, true, B_FANCY_BORDER);
tab->AddChild(BGroupLayoutBuilder(B_HORIZONTAL,10)
tab->AddChild(BGroupLayoutBuilder(B_HORIZONTAL, 10)
.Add(scrollView)
.AddGlue()
);
@ -85,14 +85,14 @@ LocaleWindow::LocaleWindow(BRect rect)
SetLayout(new BGroupLayout(B_HORIZONTAL));
AddChild(BGroupLayoutBuilder(B_VERTICAL,10)
AddChild(BGroupLayoutBuilder(B_VERTICAL, 10)
.Add(tabView)
.Add(BGroupLayoutBuilder(B_HORIZONTAL,10)
.Add(BGroupLayoutBuilder(B_HORIZONTAL, 10)
.Add(button)
.Add(fRevertButton)
.AddGlue()
)
.SetInsets(5,5,5,5)
.SetInsets(5, 5, 5, 5)
);
}