diff src/objects-gtk.c @ 1726:a8d8f419b459

[xemacs-hg @ 2003-09-30 15:26:34 by james] Add type information to xfree to avoid alias creation.
author james
date Tue, 30 Sep 2003 15:27:01 +0000
parents a1e328407366
children 91d4c8c65a0f
line wrap: on
line diff
--- a/src/objects-gtk.c	Mon Sep 29 21:53:04 2003 +0000
+++ b/src/objects-gtk.c	Tue Sep 30 15:27:01 2003 +0000
@@ -159,7 +159,7 @@
 	    }
 	    gdk_color_free (COLOR_INSTANCE_GTK_COLOR (c));
 	}
-      xfree (c->data);
+      xfree (c->data, void *);
       c->data = 0;
     }
 }
@@ -322,7 +322,7 @@
 	{
 	    gdk_font_unref (FONT_INSTANCE_GTK_FONT (f));
 	}
-      xfree (f->data);
+      xfree (f->data, void *);
       f->data = 0;
     }
 }