Another little style fix.

This commit is contained in:
barrett 2012-10-18 21:04:45 +00:00
parent 14fee07aeb
commit fdd6eb021b

View File

@ -181,17 +181,10 @@ UTF8_CHAR_LEN (uchar c)
return (((0xE5000000 >> (((c) >> 3) & 0x1E)) & 3) + 1); return (((0xE5000000 >> (((c) >> 3) & 0x1E)) & 3) + 1);
} }
RunView::RunView ( RunView::RunView(BRect frame, const char* name, Theme* theme,
BRect frame, uint32 resizingMode, uint32 flags)
const char* name, :
Theme* theme, BView(frame, name, resizingMode, flags | B_WILL_DRAW | B_FRAME_EVENTS),
uint32 resizingMode,
uint32 flags)
: BView (
frame,
name,
resizingMode,
flags | B_WILL_DRAW | B_FRAME_EVENTS),
fScroller (NULL), fScroller (NULL),
fTheme (theme), fTheme (theme),
fWorking (NULL), fWorking (NULL),