From 1bf53ffcfcb408417219ed47a5f62b4a97c9a5c9 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Sun, 12 Oct 2014 16:21:22 +0200 Subject: [PATCH] Remove leftover printf and fix build. --- src/kits/interface/ScrollView.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/kits/interface/ScrollView.cpp b/src/kits/interface/ScrollView.cpp index 2aebfde8b3..5ebf366620 100644 --- a/src/kits/interface/ScrollView.cpp +++ b/src/kits/interface/ScrollView.cpp @@ -147,7 +147,6 @@ BScrollView::AllUnarchived(const BMessage* archive) int32 firstBar = 0; BView* view; while ((view = ChildAt(firstBar++)) != NULL) { - printf("scaning %s\n", view->Name()); BScrollBar *bar = dynamic_cast(view); // We assume that the first non-scrollbar child view is the target. // So the target view can't be a BScrollBar, but who would do that? @@ -165,8 +164,6 @@ BScrollView::AllUnarchived(const BMessage* archive) fVerticalScrollBar = bar; } - printf("UA %p %p %p\n", fTarget, fHorizontalScrollBar, fVerticalScrollBar); - // Now connect the bars to the target, and make the target aware of them if (fHorizontalScrollBar) fHorizontalScrollBar->SetTarget(fTarget);