X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=render%2Finstance.c;h=76c09a36d7158250f1c00d97282d901ad58fa4e8;hb=6212a5ff9c6c4d6d62e75ebfe85978fabf3f9878;hp=0095ed8e570848c0f66e874208f89195b9cf4106;hpb=c4e4760c41f10aae6af19a4363cb247c71edee4b;p=chaz%2Fopenbox diff --git a/render/instance.c b/render/instance.c index 0095ed8e..76c09a36 100644 --- a/render/instance.c +++ b/render/instance.c @@ -1,4 +1,4 @@ -/* -*- indent-tabs-mode: t; tab-width: 4; c-basic-offset: 4; -*- +/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- instance.c for the Openbox window manager Copyright (c) 2003 Ben Jansens @@ -24,6 +24,19 @@ static RrInstance *definst = NULL; static void RrTrueColorSetup (RrInstance *inst); static void RrPseudoColorSetup (RrInstance *inst); +#ifdef DEBUG +#include "color.h" +#endif +static void +dest(gpointer data) +{ +#ifdef DEBUG + RrColor *c = data; + if (c->refcount > 0) + g_error("removing color from hash table with references"); +#endif +} + RrInstance* RrInstanceNew (Display *display, gint screen) { definst = g_new (RrInstance, 1); @@ -36,7 +49,8 @@ RrInstance* RrInstanceNew (Display *display, gint screen) definst->pseudo_colors = NULL; - definst->color_hash = g_hash_table_new(g_int_hash, g_int_equal); + definst->color_hash = g_hash_table_new_full(g_int_hash, g_int_equal, + NULL, dest); switch (definst->visual->class) { case TrueColor: