Some style fixes.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38754 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Clemens Zeidler 2010-09-21 07:08:10 +00:00
parent 248bbad27c
commit b8c3b029e4
2 changed files with 8 additions and 6 deletions

View File

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

View File

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