Some coding style fixes.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37854 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Clemens Zeidler 2010-08-02 23:16:19 +00:00
parent cd08b9f7bc
commit 4d1aa4a619
2 changed files with 14 additions and 14 deletions

View File

@ -88,13 +88,14 @@ make_blend_color(rgb_color colorA, rgb_color colorB, float position)
BeDecorator::BeDecorator(DesktopSettings& settings, BRect rect,
window_look look, uint32 flags)
: Decorator(settings, rect, look, flags),
:
Decorator(settings, rect, look, flags),
fTabOffset(0),
fTabLocation(0.0),
fLastClicked(0)
{
_UpdateFont(settings);
BeDecorator::SetLook(settings, look);
SetLook(settings, look);
fFrameColors = new RGBColor[6];
fFrameColors[0].SetColor(152, 152, 152);

View File

@ -77,8 +77,7 @@ class BeDecorator: public Decorator {
void _UpdateFont(DesktopSettings& settings);
void _DrawBlendedRect(BRect r, bool down);
void _GetButtonSizeAndOffset(const BRect& tabRect,
float* offset,
float*size) const;
float* offset, float*size) const;
void _LayoutTabItems(const BRect& tabRect);
RGBColor fButtonHighColor;