]> Dogcows Code - chaz/openbox/commitdiff
seg fix
authorMarius Nita <marius@cs.pdx.edu>
Wed, 6 Nov 2002 14:10:02 +0000 (14:10 +0000)
committerMarius Nita <marius@cs.pdx.edu>
Wed, 6 Nov 2002 14:10:02 +0000 (14:10 +0000)
otk/style.cc

index 315f7878c96f08e5fc19cf8019643555b86a8b37..860edc14b988d94b082f17b6b112bd0d4c0895f1 100644 (file)
 
 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)
-  : image_control(ctrl), screen_number(screen)
+  : image_control(ctrl), font(NULL), screen_number(screen)
 {
 }
 
This page took 0.021581 seconds and 4 git commands to generate.