Style fixes to BMenuItem::GetContentSize and update docs

Rename width and height to _width and _height matching the header.

Update the documentation for this method as well.
This commit is contained in:
John Scipione
2014-03-04 14:17:46 -05:00
parent 9b39e22db2
commit 379ede58af
2 changed files with 12 additions and 12 deletions
+7 -7
View File
@@ -1,13 +1,13 @@
/*
* Copyright 2014 Haiku Inc. All rights reserved.
* Copyright 2014 Haiku, Inc. All rights reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
* John Scipione, [email protected]
*
* Corresponds to:
* headers/os/interface/MenuItem.h hrev46953
* src/kits/interface/MenuItem.cpp hrev46953
* headers/os/interface/MenuItem.h hrev46969
* src/kits/interface/MenuItem.cpp hrev46969
*/
@@ -266,8 +266,8 @@
/*!
\fn void BMenuItem::GetContentSize(float* width, float* height)
\brief Fills out \a width and \a height with the content rectangle
\fn void BMenuItem::GetContentSize(float* _width, float* _height)
\brief Fills out \a _width and \a _height with the content rectangle
dimensions.
You only need to call this method if you're implementing your own
@@ -280,8 +280,8 @@
The content rectangle can be calculated using this method as well as
ContentLocation() to get location of the top left corner.
\param width Filled out with the \a width of the content rectangle.
\param height Filled out with the \a height of the content rectangle.
\param _width Filled out with the width of the content rectangle.
\param _height Filled out with the height of the content rectangle.
\sa ContentLocation()
\sa DrawContent()
+5 -5
View File
@@ -360,7 +360,7 @@ BMenuItem::Frame() const
void
BMenuItem::GetContentSize(float* width, float* height)
BMenuItem::GetContentSize(float* _width, float* _height)
{
// TODO: Get rid of this. BMenu should handle this
// automatically. Maybe it's not even needed, since our
@@ -369,10 +369,10 @@ BMenuItem::GetContentSize(float* width, float* height)
fCachedWidth = fSuper->StringWidth(fLabel);
if (width)
*width = (float)ceil(fCachedWidth);
if (height)
*height = MenuPrivate(fSuper).FontHeight();
if (_width)
*_width = (float)ceil(fCachedWidth);
if (_height)
*_height = MenuPrivate(fSuper).FontHeight();
}