Make the GTK_TOOLTIP and GTK_IS_TOOLTIP macros public.
2007-07-09 Johan Dahlin <jdahlin@async.com.br> * gtk/gtktooltip.c: * gtk/gtktooltip.h: Make the GTK_TOOLTIP and GTK_IS_TOOLTIP macros public. svn path=/trunk/; revision=18410
This commit is contained in:

committed by
Johan Dahlin

parent
5f539194f8
commit
3865f68226
@ -1,3 +1,8 @@
|
|||||||
|
2007-07-09 Johan Dahlin <jdahlin@async.com.br>
|
||||||
|
|
||||||
|
* gtk/gtktooltip.c:
|
||||||
|
* gtk/gtktooltip.h: Make the GTK_TOOLTIP and GTK_IS_TOOLTIP macros public.
|
||||||
|
|
||||||
2007-07-09 Johan Dahlin,,, <jdahlin@lozenge>
|
2007-07-09 Johan Dahlin,,, <jdahlin@lozenge>
|
||||||
|
|
||||||
* demos/gtk-demo/demo.ui:
|
* demos/gtk-demo/demo.ui:
|
||||||
|
@ -34,9 +34,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
|
||||||
#define GTK_TOOLTIP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TOOLTIP, GtkTooltip))
|
|
||||||
#define GTK_TOOLTIP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_TOOLTIP, GtkTooltipClass))
|
#define GTK_TOOLTIP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_TOOLTIP, GtkTooltipClass))
|
||||||
#define GTK_IS_TOOLTIP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TOOLTIP))
|
|
||||||
#define GTK_IS_TOOLTIP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TOOLTIP))
|
#define GTK_IS_TOOLTIP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TOOLTIP))
|
||||||
#define GTK_TOOLTIP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_TOOLTIP, GtkTooltipClass))
|
#define GTK_TOOLTIP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_TOOLTIP, GtkTooltipClass))
|
||||||
|
|
||||||
|
@ -28,6 +28,8 @@
|
|||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
#define GTK_TYPE_TOOLTIP (gtk_tooltip_get_type ())
|
#define GTK_TYPE_TOOLTIP (gtk_tooltip_get_type ())
|
||||||
|
#define GTK_TOOLTIP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TOOLTIP, GtkTooltip))
|
||||||
|
#define GTK_IS_TOOLTIP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TOOLTIP))
|
||||||
|
|
||||||
GType gtk_tooltip_get_type (void);
|
GType gtk_tooltip_get_type (void);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user