From a6fb7929ba30029f7a3376d75cb6e43b6b816104 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Tue, 5 May 2009 18:17:16 +0000 Subject: [PATCH] * 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 --- src/preferences/locale/LocaleWindow.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/preferences/locale/LocaleWindow.cpp b/src/preferences/locale/LocaleWindow.cpp index 7aeadd15e8..cf865adb35 100644 --- a/src/preferences/locale/LocaleWindow.cpp +++ b/src/preferences/locale/LocaleWindow.cpp @@ -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) ); }