* fix typo

* make the target a bit more visible



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29102 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Karsten Heimrich 2009-01-31 21:21:24 +00:00
parent 740ea80754
commit 2f475458bc
1 changed files with 3 additions and 1 deletions

View File

@ -17,6 +17,7 @@ public:
SetLayout(base);
BView* view = new BView("", B_WILL_DRAW, NULL);
view->SetViewColor(255, 0, 0, 255);
view->SetExplicitMinSize(BSize(B_SIZE_UNSET, 200));
fScrollView = new BScrollView("mit", view, B_NAVIGABLE_JUMP, true,
@ -24,6 +25,7 @@ public:
BView* view2 = new BView(BRect(0, 0, 200, 200), "", B_FOLLOW_ALL,
B_WILL_DRAW);
view2->SetViewColor(255, 0, 0, 255);
fScrollView2 = new BScrollView("ohne", view2, B_FOLLOW_ALL,
B_NAVIGABLE_JUMP, true, true, B_NO_BORDER);
@ -78,7 +80,7 @@ public:
void PrintToStream()
{
BView* view = fScrollView->Target();
BView* view2 = fScrollView->Target();
BView* view2 = fScrollView2->Target();
view->Bounds().PrintToStream();
view->Frame().PrintToStream();