aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-meeting-attendee.h
diff options
context:
space:
mode:
authorHans Petter <hansp@src.gnome.org>2003-04-07 15:29:44 +0800
committerHans Petter <hansp@src.gnome.org>2003-04-07 15:29:44 +0800
commit092dfdc6183f748b4d11f64827faaab89609d7ef (patch)
tree2a67714206b75a73c32463ca088536859a87e465 /calendar/gui/e-meeting-attendee.h
parent4eeb10bc4aab7945cc9be561f200a8d2b2bd0c38 (diff)
downloadgsoc2013-evolution-092dfdc6183f748b4d11f64827faaab89609d7ef.tar
gsoc2013-evolution-092dfdc6183f748b4d11f64827faaab89609d7ef.tar.gz
gsoc2013-evolution-092dfdc6183f748b4d11f64827faaab89609d7ef.tar.bz2
gsoc2013-evolution-092dfdc6183f748b4d11f64827faaab89609d7ef.tar.lz
gsoc2013-evolution-092dfdc6183f748b4d11f64827faaab89609d7ef.tar.xz
gsoc2013-evolution-092dfdc6183f748b4d11f64827faaab89609d7ef.tar.zst
gsoc2013-evolution-092dfdc6183f748b4d11f64827faaab89609d7ef.zip
Slight correction to previous commit; use G_ cast checks.
svn path=/trunk/; revision=20696
Diffstat (limited to 'calendar/gui/e-meeting-attendee.h')
-rw-r--r--calendar/gui/e-meeting-attendee.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/e-meeting-attendee.h b/calendar/gui/e-meeting-attendee.h
index 87967e5bb5..5ddc9968b2 100644
--- a/calendar/gui/e-meeting-attendee.h
+++ b/calendar/gui/e-meeting-attendee.h
@@ -37,10 +37,10 @@ extern "C" {
#endif /* __cplusplus */
#define E_TYPE_MEETING_ATTENDEE (e_meeting_attendee_get_type ())
-#define E_MEETING_ATTENDEE(obj) (GTK_CHECK_CAST ((obj), E_TYPE_MEETING_ATTENDEE, EMeetingAttendee))
-#define E_MEETING_ATTENDEE_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), E_TYPE_MEETING_ATTENDEE, EMeetingAttendeeClass))
-#define E_IS_MEETING_ATTENDEE(obj) (GTK_CHECK_TYPE ((obj), E_TYPE_MEETING_ATTENDEE))
-#define E_IS_MEETING_ATTENDEE_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), E_TYPE_MEETING_ATTENDEE))
+#define E_MEETING_ATTENDEE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), E_TYPE_MEETING_ATTENDEE, EMeetingAttendee))
+#define E_MEETING_ATTENDEE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), E_TYPE_MEETING_ATTENDEE, EMeetingAttendeeClass))
+#define E_IS_MEETING_ATTENDEE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E_TYPE_MEETING_ATTENDEE))
+#define E_IS_MEETING_ATTENDEE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), E_TYPE_MEETING_ATTENDEE))
typedef struct _EMeetingAttendee EMeetingAttendee;