Another little style fix.
This commit is contained in:
parent
14fee07aeb
commit
fdd6eb021b
|
@ -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),
|
||||||
|
|
Ŝarĝante…
Reference in New Issue