Fixed #if G_ENABLE_DEBUG that was supposed to be #ifdef G_ENABLE_DEBUG.

* gtk/gtkobject.h: Fixed #if G_ENABLE_DEBUG that
	was supposed to be #ifdef G_ENABLE_DEBUG.
This commit is contained in:
Darin Adler
2001-03-23 02:44:31 +00:00
parent 1c92bad0ee
commit 5dbcf115a9
8 changed files with 36 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2001-03-22 Darin Adler <darin@eazel.com>
* gtk/gtkobject.h: Fixed #if G_ENABLE_DEBUG that
was supposed to be #ifdef G_ENABLE_DEBUG.
Thu Mar 15 15:23:11 2001 Owen Taylor <otaylor@redhat.com>
* NEWS: Updated

View File

@@ -1,3 +1,8 @@
2001-03-22 Darin Adler <darin@eazel.com>
* gtk/gtkobject.h: Fixed #if G_ENABLE_DEBUG that
was supposed to be #ifdef G_ENABLE_DEBUG.
Thu Mar 15 15:23:11 2001 Owen Taylor <otaylor@redhat.com>
* NEWS: Updated

View File

@@ -1,3 +1,8 @@
2001-03-22 Darin Adler <darin@eazel.com>
* gtk/gtkobject.h: Fixed #if G_ENABLE_DEBUG that
was supposed to be #ifdef G_ENABLE_DEBUG.
Thu Mar 15 15:23:11 2001 Owen Taylor <otaylor@redhat.com>
* NEWS: Updated

View File

@@ -1,3 +1,8 @@
2001-03-22 Darin Adler <darin@eazel.com>
* gtk/gtkobject.h: Fixed #if G_ENABLE_DEBUG that
was supposed to be #ifdef G_ENABLE_DEBUG.
Thu Mar 15 15:23:11 2001 Owen Taylor <otaylor@redhat.com>
* NEWS: Updated

View File

@@ -1,3 +1,8 @@
2001-03-22 Darin Adler <darin@eazel.com>
* gtk/gtkobject.h: Fixed #if G_ENABLE_DEBUG that
was supposed to be #ifdef G_ENABLE_DEBUG.
Thu Mar 15 15:23:11 2001 Owen Taylor <otaylor@redhat.com>
* NEWS: Updated

View File

@@ -1,3 +1,8 @@
2001-03-22 Darin Adler <darin@eazel.com>
* gtk/gtkobject.h: Fixed #if G_ENABLE_DEBUG that
was supposed to be #ifdef G_ENABLE_DEBUG.
Thu Mar 15 15:23:11 2001 Owen Taylor <otaylor@redhat.com>
* NEWS: Updated

View File

@@ -1,3 +1,8 @@
2001-03-22 Darin Adler <darin@eazel.com>
* gtk/gtkobject.h: Fixed #if G_ENABLE_DEBUG that
was supposed to be #ifdef G_ENABLE_DEBUG.
Thu Mar 15 15:23:11 2001 Owen Taylor <otaylor@redhat.com>
* NEWS: Updated

View File

@@ -363,7 +363,7 @@ void gtk_trace_referencing (GtkObject *object,
guint dummy,
guint line,
gboolean do_ref);
#if G_ENABLE_DEBUG
#ifdef G_ENABLE_DEBUG
# define gtk_object_ref(o) G_STMT_START{gtk_trace_referencing((o),G_GNUC_PRETTY_FUNCTION,0,__LINE__,1);}G_STMT_END
# define gtk_object_unref(o) G_STMT_START{gtk_trace_referencing((o),G_GNUC_PRETTY_FUNCTION,0,__LINE__,0);}G_STMT_END
#endif /* G_ENABLE_DEBUG */