seg fix
This commit is contained in:
parent
746e55f74b
commit
9c82f9418b
1 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue