From fac0dbd69c7d8a6807d51cc12615de88b7a900be Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Tue, 16 Oct 2001 21:47:34 +0000 Subject: If CAMEL_DEBUG is defined, print some useful ref/unref info. 2001-10-16 Jeffrey Stedfast * camel-object.[c,h]: If CAMEL_DEBUG is defined, print some useful ref/unref info. * providers/imap/camel-imap-store.c (delete_folder): Fixed an assignment warning. * camel-uid-cache.c (camel_uid_cache_new): Make sure that the parent directory exists before trying to open the filename, if it doesn't, create it. svn path=/trunk/; revision=13707 --- camel/camel-object.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'camel/camel-object.c') diff --git a/camel/camel-object.c b/camel/camel-object.c index 68b9278d8f..c04415cce9 100644 --- a/camel/camel-object.c +++ b/camel/camel-object.c @@ -478,6 +478,10 @@ camel_object_new (CamelType type) return instance; } +#ifdef camel_object_ref +#undef camel_object_ref +#endif + void camel_object_ref (CamelObject * obj) { @@ -488,6 +492,10 @@ camel_object_ref (CamelObject * obj) G_UNLOCK (refcount); } +#ifdef camel_object_unref +#undef camel_object_unref +#endif + void camel_object_unref (CamelObject * obj) { -- cgit v1.2.3