X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=render%2Finstance.c;h=76c09a36d7158250f1c00d97282d901ad58fa4e8;hb=34446063fa6f954f81200f2778c099865b374d2c;hp=f037a024c85156b1e1d01e5d685f56710ee11133;hpb=92feea765a59a7b3ab3b3c0babda4bfd0cf91d7f;p=chaz%2Fopenbox diff --git a/render/instance.c b/render/instance.c index f037a024..76c09a36 100644 --- a/render/instance.c +++ b/render/instance.c @@ -1,3 +1,21 @@ +/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- + + instance.c for the Openbox window manager + Copyright (c) 2003 Ben Jansens + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + See the COPYING file for a copy of the GNU General Public License. +*/ + #include "render.h" #include "instance.h" @@ -6,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); @@ -18,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: