Some style fixes.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38754 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -9,8 +9,8 @@
|
|||||||
class AreasWindow : public BWindow {
|
class AreasWindow : public BWindow {
|
||||||
public:
|
public:
|
||||||
AreasWindow(BRect frame)
|
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");
|
button1 = new BButton("1");
|
||||||
button2 = new BButton("2");
|
button2 = new BButton("2");
|
||||||
@@ -65,7 +65,8 @@ private:
|
|||||||
class Areas : public BApplication {
|
class Areas : public BApplication {
|
||||||
public:
|
public:
|
||||||
Areas()
|
Areas()
|
||||||
: BApplication("application/x-vnd.haiku.Areas")
|
:
|
||||||
|
BApplication("application/x-vnd.haiku.Areas")
|
||||||
{
|
{
|
||||||
BRect frameRect;
|
BRect frameRect;
|
||||||
frameRect.Set(100, 100, 300, 300);
|
frameRect.Set(100, 100, 300, 300);
|
||||||
|
|||||||
@@ -10,8 +10,8 @@
|
|||||||
class TwoViewsWindow : public BWindow {
|
class TwoViewsWindow : public BWindow {
|
||||||
public:
|
public:
|
||||||
TwoViewsWindow(BRect frame)
|
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");
|
button1 = new BButton("View 1");
|
||||||
textView1 = new BTextView("textView1");
|
textView1 = new BTextView("textView1");
|
||||||
@@ -48,7 +48,8 @@ private:
|
|||||||
class TwoViews : public BApplication {
|
class TwoViews : public BApplication {
|
||||||
public:
|
public:
|
||||||
TwoViews()
|
TwoViews()
|
||||||
: BApplication("application/x-vnd.haiku.TwoViews")
|
:
|
||||||
|
BApplication("application/x-vnd.haiku.TwoViews")
|
||||||
{
|
{
|
||||||
BRect frameRect;
|
BRect frameRect;
|
||||||
frameRect.Set(100, 100, 300, 300);
|
frameRect.Set(100, 100, 300, 300);
|
||||||
|
|||||||
Reference in New Issue
Block a user