X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Fapplication.cc;h=e325a58218bc824557bcf4b5573a85b4b9bff9f3;hb=75e8fc2705d9c606a702eb7057e9e503be90618b;hp=f101a5a3f7e6ebf1f74f22afa1b95ac31770b98e;hpb=c7e157e53c862140858230b2b23aeb39f9f9c1ed;p=chaz%2Fopenbox diff --git a/otk/application.cc b/otk/application.cc index f101a5a3..e325a582 100644 --- a/otk/application.cc +++ b/otk/application.cc @@ -9,6 +9,7 @@ #include "widget.hh" #include "timer.hh" #include "property.hh" +#include "rendercolor.hh" extern "C" { #ifdef HAVE_STDLIB_H @@ -32,6 +33,7 @@ Application::Application(int argc, char **argv) const ScreenInfo *s_info = _display.screenInfo(DefaultScreen(*_display)); Timer::initialize(); + RenderColor::initialize(); Property::initialize(); _img_ctrl = new ImageControl(s_info, True, 4, 5, 200); _style_conf = new Configuration(False); @@ -45,6 +47,7 @@ Application::~Application() delete _style_conf; delete _img_ctrl; delete _style; + RenderColor::destroy(); Timer::destroy(); }