s/NULL/0/

This commit is contained in:
Dana Jansens 2002-11-06 18:26:39 +00:00
parent 196996230c
commit ec4548a19b

View file

@ -15,12 +15,12 @@ Style::Style() : font(NULL)
}
Style::Style(unsigned int screen)
: font(NULL), screen_number(screen)
: font(0), screen_number(screen)
{
}
Style::Style(unsigned int screen, BImageControl *ctrl)
: image_control(ctrl), font(NULL), screen_number(screen)
: image_control(ctrl), font(0), screen_number(screen)
{
}