mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 13:53:19 +00:00
exchanged GTK_ macros with G_TYPE macros (as pointed out by mathrick)
Original commit message from CVS: exchanged GTK_ macros with G_TYPE macros (as pointed out by mathrick)
This commit is contained in:
parent
3cf9fdfcb7
commit
99acdfdb49
2 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-10-22 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
|
* docs/pwg/building-boiler.xml:
|
||||||
|
exchanged GTK_ macros with G_TYPE macros (as pointed out by mathrick)
|
||||||
|
|
||||||
2004-10-19 Wim Taymans <wim at fluendo dot com>
|
2004-10-19 Wim Taymans <wim at fluendo dot com>
|
||||||
|
|
||||||
* gst/parse/parse.l:
|
* gst/parse/parse.l:
|
||||||
|
|
|
@ -155,13 +155,13 @@ U gst-template/gst-app/src/Makefile.am
|
||||||
#define GST_TYPE_EXAMPLE \
|
#define GST_TYPE_EXAMPLE \
|
||||||
(gst_example_get_type())
|
(gst_example_get_type())
|
||||||
#define GST_EXAMPLE(obj) \
|
#define GST_EXAMPLE(obj) \
|
||||||
(GTK_CHECK_CAST((obj),GST_TYPE_EXAMPLE,GstExample))
|
(G_TYPE_CHECK_CAST((obj),GST_TYPE_EXAMPLE,GstExample))
|
||||||
#define GST_EXAMPLE_CLASS(klass) \
|
#define GST_EXAMPLE_CLASS(klass) \
|
||||||
(GTK_CHECK_CLASS_CAST((klass),GST_TYPE_EXAMPLE,GstExample))
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_EXAMPLE,GstExample))
|
||||||
#define GST_IS_EXAMPLE(obj) \
|
#define GST_IS_EXAMPLE(obj) \
|
||||||
(GTK_CHECK_TYPE((obj),GST_TYPE_EXAMPLE))
|
(G_TYPE_CHECK_TYPE((obj),GST_TYPE_EXAMPLE))
|
||||||
#define GST_IS_EXAMPLE_CLASS(obj) \
|
#define GST_IS_EXAMPLE_CLASS(obj) \
|
||||||
(GTK_CHECK_CLASS_TYPE((klass),GST_TYPE_EXAMPLE))
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_EXAMPLE))
|
||||||
|
|
||||||
/* Standard function returning type information. */
|
/* Standard function returning type information. */
|
||||||
GType gst_example_get_type (void);
|
GType gst_example_get_type (void);
|
||||||
|
|
Loading…
Reference in a new issue