Change only_if_exists argument of gdk_atom_intern to bool.

Wed Dec  1 22:35:43 1999  Owen Taylor  <otaylor@redhat.com>

	* gdk/gdkproperty.h x11/gdkproperty.c: Change
	only_if_exists argument of gdk_atom_intern to
	bool.
This commit is contained in:
Owen Taylor 1999-12-03 20:16:04 +00:00 committed by Owen Taylor
parent 16502247df
commit a3bf693cd4
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ typedef enum
} GdkPropMode;
GdkAtom gdk_atom_intern (const gchar *atom_name,
gint only_if_exists);
gboolean only_if_exists);
gchar* gdk_atom_name (GdkAtom atom);
gboolean gdk_property_get (GdkWindow *window,
GdkAtom property,

View File

@ -34,7 +34,7 @@
GdkAtom
gdk_atom_intern (const gchar *atom_name,
gint only_if_exists)
gboolean only_if_exists)
{
GdkAtom retval;
static GHashTable *atom_hash = NULL;