From b8c3b029e4ee3fdcf7f2360e70d9f4e2b7721f03 Mon Sep 17 00:00:00 2001 From: Clemens Zeidler Date: Tue, 21 Sep 2010 07:08:10 +0000 Subject: [PATCH] Some style fixes. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38754 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tests/libs/alm/Areas.cpp | 7 ++++--- src/tests/libs/alm/TwoViews.cpp | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/tests/libs/alm/Areas.cpp b/src/tests/libs/alm/Areas.cpp index 72fb93de85..8b21b7cbc2 100644 --- a/src/tests/libs/alm/Areas.cpp +++ b/src/tests/libs/alm/Areas.cpp @@ -9,8 +9,8 @@ class AreasWindow : public BWindow { public: AreasWindow(BRect frame) - : BWindow(frame, "ALM Areas", - B_TITLED_WINDOW, B_QUIT_ON_WINDOW_CLOSE) + : + BWindow(frame, "ALM Areas", B_TITLED_WINDOW, B_QUIT_ON_WINDOW_CLOSE) { button1 = new BButton("1"); button2 = new BButton("2"); @@ -65,7 +65,8 @@ private: class Areas : public BApplication { public: Areas() - : BApplication("application/x-vnd.haiku.Areas") + : + BApplication("application/x-vnd.haiku.Areas") { BRect frameRect; frameRect.Set(100, 100, 300, 300); diff --git a/src/tests/libs/alm/TwoViews.cpp b/src/tests/libs/alm/TwoViews.cpp index 195b33dec5..91f5cb8c25 100644 --- a/src/tests/libs/alm/TwoViews.cpp +++ b/src/tests/libs/alm/TwoViews.cpp @@ -10,8 +10,8 @@ class TwoViewsWindow : public BWindow { public: TwoViewsWindow(BRect frame) - : BWindow(frame, "ALM Two Views", - B_TITLED_WINDOW, B_QUIT_ON_WINDOW_CLOSE) + : + BWindow(frame, "ALM Two Views", B_TITLED_WINDOW, B_QUIT_ON_WINDOW_CLOSE) { button1 = new BButton("View 1"); textView1 = new BTextView("textView1"); @@ -48,7 +48,8 @@ private: class TwoViews : public BApplication { public: TwoViews() - : BApplication("application/x-vnd.haiku.TwoViews") + : + BApplication("application/x-vnd.haiku.TwoViews") { BRect frameRect; frameRect.Set(100, 100, 300, 300);