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:
Rene Gollent
2011-01-04 04:02:51 +00:00
parent 71d86b674b
commit 0d791a3062
+2 -1
View File
@@ -24,7 +24,8 @@ BIconRule::BIconRule(const char* name)
: :
BView(name, B_WILL_DRAW), BView(name, B_WILL_DRAW),
fIcons(5, true), fIcons(5, true),
fSelIndex(-1) fSelIndex(-1),
fMessage(NULL)
{ {
} }