From: Dana Jansens Date: Wed, 6 Nov 2002 18:26:39 +0000 (+0000) Subject: s/NULL/0/ X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=ec4548a19b1d1172d031bee8b277089a59fcfd2f;p=chaz%2Fopenbox s/NULL/0/ --- diff --git a/otk/style.cc b/otk/style.cc index d98c926b..aa821300 100644 --- a/otk/style.cc +++ b/otk/style.cc @@ -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) { }