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);