Fix uninitialized member var that was resulting in a crash on startup. Resolves #7055.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40102 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
71d86b674b
commit
0d791a3062
@ -24,7 +24,8 @@ BIconRule::BIconRule(const char* name)
|
||||
:
|
||||
BView(name, B_WILL_DRAW),
|
||||
fIcons(5, true),
|
||||
fSelIndex(-1)
|
||||
fSelIndex(-1),
|
||||
fMessage(NULL)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user