diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-23 07:26:32 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-23 07:26:32 +0000 |
| commit | 9a64438a5a53624e5f5c7c3dbb5123e246693e5e (patch) | |
| tree | 82c2559946ff9fe3cef8686623d9d43c1a0bb7dc /otk/renderstyle.cc | |
| parent | bf3a40ad66d20b85c21233fce909c22f8dcf0bf8 (diff) | |
set the root window, to a color for now
Diffstat (limited to 'otk/renderstyle.cc')
| -rw-r--r-- | otk/renderstyle.cc | 4 |
1 files changed, 4 insertions, 0 deletions
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; |
