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