Additional style fixes from Julun: adding back the virtual keyword, moving the

commas on class member initializers, fixing a typo. Thanks!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22174 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ryan Leavengood
2007-09-05 02:47:33 +00:00
parent 0d469404ed
commit b40c990627
10 changed files with 52 additions and 48 deletions
+2 -2
View File
@@ -12,8 +12,8 @@
#include <Message.h>
ColorMenuItem::ColorMenuItem(const char *label, rgb_color color, BMessage *message)
: BMenuItem(label, message, 0, 0)
, fItemColor(color)
: BMenuItem(label, message, 0, 0),
fItemColor(color)
{
}