From ec4548a19b1d1172d031bee8b277089a59fcfd2f Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 6 Nov 2002 18:26:39 +0000 Subject: [PATCH] s/NULL/0/ --- otk/style.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) { } -- 2.45.2