Rename BLayout::DerivedLayoutItems() to DoLayout(), which is consistent with BView::DoLayout(). Also adjusted child classes and documentation.

This commit is contained in:
Alex Wilson
2011-10-28 14:16:25 -06:00
parent 676c618ad7
commit 4e0131f51b
9 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -337,7 +337,7 @@ topLayout->AddItem(nestedLayoutWithView);
/*!
\fn void BLayout::LayoutItems(bool force = false)
\brief If there is no layout currently ongoing, and \a force is \c false,
creates a new BLayoutContext and calls the DerivedLayoutItems() method
creates a new BLayoutContext and calls the DoLayout() method
of this BLayout and any BLayout s nested in this BLayout.
If method also guarantees that the owner view of this layout (as returned
@@ -514,7 +514,7 @@ topLayout->AddItem(nestedLayoutWithView);
/*!
\fn void BLayout::DerivedLayoutItems() = 0
\fn void BLayout::DoLayout() = 0
\brief Implemented by derived classes to position and resize the items in
this layout.
*/