s/NULL/0/
This commit is contained in:
parent
196996230c
commit
ec4548a19b
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue