From 9a64438a5a53624e5f5c7c3dbb5123e246693e5e Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 23 Jan 2003 07:26:32 +0000 Subject: set the root window, to a color for now --- otk/renderstyle.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'otk/renderstyle.cc') diff --git a/otk/renderstyle.cc b/otk/renderstyle.cc index a2cfae21..41745ea0 100644 --- a/otk/renderstyle.cc +++ b/otk/renderstyle.cc @@ -14,6 +14,8 @@ RenderStyle::RenderStyle(int screen, const std::string &stylefile) : _screen(screen), _file(stylefile) { + _root_color = new RenderColor(_screen, 0x272a2f); + _text_color_focus = new RenderColor(_screen, 0x272a2f); _text_color_unfocus = new RenderColor(_screen, 0x676869); @@ -220,6 +222,8 @@ RenderStyle::RenderStyle(int screen, const std::string &stylefile) RenderStyle::~RenderStyle() { + delete _root_color; + delete _text_color_focus; delete _text_color_unfocus; -- cgit v1.2.3