Variable name cleanup

This commit is contained in:
John Scipione 2012-11-02 19:07:18 -04:00
parent a4f0328efe
commit 68c70f9b6d
4 changed files with 10 additions and 10 deletions

View File

@ -270,17 +270,17 @@ FakeScrollBar::SetValue(int32 value)
void
FakeScrollBar::SetDoubleArrows(bool doublearrows)
FakeScrollBar::SetDoubleArrows(bool doubleArrows)
{
fDoubleArrows = doublearrows;
fDoubleArrows = doubleArrows;
Invalidate();
}
void
FakeScrollBar::SetKnobStyle(uint32 style)
FakeScrollBar::SetKnobStyle(uint32 knobStyle)
{
fKnobStyle = style;
fKnobStyle = knobStyle;
Invalidate();
}

View File

@ -28,8 +28,8 @@ public:
virtual void SetValue(int32 value);
void SetDoubleArrows(bool doublearrows);
void SetKnobStyle(uint32 style);
void SetDoubleArrows(bool doubleArrows);
void SetKnobStyle(uint32 knobStyle);
void SetFromScrollBarInfo(const scroll_bar_info &info);

View File

@ -342,15 +342,15 @@ LookAndFeelSettingsView::_DoubleScrollBarArrows()
void
LookAndFeelSettingsView::_SetDoubleScrollBarArrows(bool on)
LookAndFeelSettingsView::_SetDoubleScrollBarArrows(bool doubleArrows)
{
scroll_bar_info info;
get_scroll_bar_info(&info);
info.double_arrows = on;
info.double_arrows = doubleArrows;
set_scroll_bar_info(&info);
if (on)
if (doubleArrows)
fArrowStyleDouble->SetValue(B_CONTROL_ON);
else
fArrowStyleSingle->SetValue(B_CONTROL_ON);

View File

@ -46,7 +46,7 @@ private:
void _AdoptInterfaceToCurrentDecor();
bool _DoubleScrollBarArrows();
void _SetDoubleScrollBarArrows(bool on);
void _SetDoubleScrollBarArrows(bool doubleArrows);
int32 _ScrollBarKnobStyle();
void _SetScrollBarKnobStyle(int32 knobStyle);