BMenu: Rename FrameMoved and FrameResized variable names
No functional change. lowercase_with_underscore file names are not in-line with Haiku's style guidelines. Change-Id: I254c975ee60168963ca4039a61dc428c05e0e6ba Reviewed-on: https://review.haiku-os.org/c/haiku/+/2306 Reviewed-by: Adrien Destugues <[email protected]>
This commit is contained in:
committed by
Adrien Destugues
parent
02e45e32ae
commit
2e08685b99
@@ -76,8 +76,8 @@ public:
|
|||||||
float* _height);
|
float* _height);
|
||||||
virtual void ResizeToPreferred();
|
virtual void ResizeToPreferred();
|
||||||
virtual void DoLayout();
|
virtual void DoLayout();
|
||||||
virtual void FrameMoved(BPoint newPosition);
|
virtual void FrameMoved(BPoint where);
|
||||||
virtual void FrameResized(float newWidth, float newHeight);
|
virtual void FrameResized(float width, float height);
|
||||||
|
|
||||||
void InvalidateLayout();
|
void InvalidateLayout();
|
||||||
|
|
||||||
|
|||||||
@@ -677,16 +677,16 @@ BMenu::DoLayout()
|
|||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
BMenu::FrameMoved(BPoint new_position)
|
BMenu::FrameMoved(BPoint where)
|
||||||
{
|
{
|
||||||
BView::FrameMoved(new_position);
|
BView::FrameMoved(where);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
BMenu::FrameResized(float new_width, float new_height)
|
BMenu::FrameResized(float width, float height)
|
||||||
{
|
{
|
||||||
BView::FrameResized(new_width, new_height);
|
BView::FrameResized(width, height);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user