Corrected strace output.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36161 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jonas Sundström
2010-04-11 17:04:29 +00:00
parent b6e09fad7a
commit a2224f75d9
+4 -4
View File
@@ -3935,7 +3935,7 @@ BView::RemoveSelf()
bool bool
BView::_RemoveSelf() BView::_RemoveSelf()
{ {
STRACE(("BView(%s)::RemoveSelf()\n", Name())); STRACE(("BView(%s)::_RemoveSelf()\n", Name()));
// Remove this child from its parent // Remove this child from its parent
@@ -3959,7 +3959,7 @@ BView::_RemoveSelf()
parent->InvalidateLayout(); parent->InvalidateLayout();
STRACE(("DONE: BView(%s)::RemoveSelf()\n", Name())); STRACE(("DONE: BView(%s)::_RemoveSelf()\n", Name()));
return true; return true;
} }
@@ -4792,11 +4792,11 @@ BView::_InitData(BRect frame, const char* name, uint32 resizingMode,
{ {
// Info: The name of the view is set by BHandler constructor // Info: The name of the view is set by BHandler constructor
STRACE(("BView::InitData: enter\n")); STRACE(("BView::_InitData: enter\n"));
// initialize members // initialize members
if ((resizingMode & ~_RESIZE_MASK_) || (flags & _RESIZE_MASK_)) if ((resizingMode & ~_RESIZE_MASK_) || (flags & _RESIZE_MASK_))
printf("%s BView::InitData(): resizing mode or flags swapped\n", name); printf("%s BView::_InitData(): resizing mode or flags swapped\n", name);
// There are applications that swap the resize mask and the flags in the // There are applications that swap the resize mask and the flags in the
// BView constructor. This does not cause problems under BeOS as it just // BView constructor. This does not cause problems under BeOS as it just