This commit is contained in:
Marius Nita 2002-11-06 14:10:02 +00:00
parent 746e55f74b
commit 9c82f9418b

View file

@ -10,17 +10,17 @@
namespace otk { namespace otk {
Style::Style() Style::Style() : font(NULL)
{ {
fprintf(stderr, "new font class used");
} }
Style::Style(unsigned int screen) : screen_number(screen) Style::Style(unsigned int screen)
: font(NULL), screen_number(screen)
{ {
} }
Style::Style(unsigned int screen, otk::BImageControl *ctrl) Style::Style(unsigned int screen, otk::BImageControl *ctrl)
: image_control(ctrl), screen_number(screen) : image_control(ctrl), font(NULL), screen_number(screen)
{ {
} }