aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/schedule-page.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2002-12-02 11:06:02 +0800
committerMichael Zucci <zucchi@src.gnome.org>2002-12-02 11:06:02 +0800
commit3041d1943a01406abf5672d8759213472e61298d (patch)
tree2387b33f3e2a1e123d9dd1f097cf08c63ea2d215 /calendar/gui/dialogs/schedule-page.c
parentbe82b4b9ec5b202bd533b81d798bee91df503b89 (diff)
downloadgsoc2013-evolution-3041d1943a01406abf5672d8759213472e61298d.tar
gsoc2013-evolution-3041d1943a01406abf5672d8759213472e61298d.tar.gz
gsoc2013-evolution-3041d1943a01406abf5672d8759213472e61298d.tar.bz2
gsoc2013-evolution-3041d1943a01406abf5672d8759213472e61298d.tar.lz
gsoc2013-evolution-3041d1943a01406abf5672d8759213472e61298d.tar.xz
gsoc2013-evolution-3041d1943a01406abf5672d8759213472e61298d.tar.zst
gsoc2013-evolution-3041d1943a01406abf5672d8759213472e61298d.zip
run fix.sh over this.
2002-11-27 Not Zed <NotZed@Ximian.com> * gui/itip-utils.[ch]: run fix.sh over this. * gui/dialogs/*.[ch]: run fix.sh over all of this. 2002-11-26 Richard Li <Richard.Li@Sun.COM> * cal-client/cal-client.c (cal_client_construct): removed extra call to CORBA_exception_init. 2002-11-22 Not Zed <NotZed@Ximian.com> * gui/dialogs/delete-comp.c (delete_component_dialog): Changed e_messagebox -> gtk_messagedialog. svn path=/trunk/; revision=18972
Diffstat (limited to 'calendar/gui/dialogs/schedule-page.c')
-rw-r--r--calendar/gui/dialogs/schedule-page.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/calendar/gui/dialogs/schedule-page.c b/calendar/gui/dialogs/schedule-page.c
index a6d1911018..e0bc4c848f 100644
--- a/calendar/gui/dialogs/schedule-page.c
+++ b/calendar/gui/dialogs/schedule-page.c
@@ -134,7 +134,7 @@ schedule_page_class_init (SchedulePageClass *class)
editor_page_class = (CompEditorPageClass *) class;
object_class = (GtkObjectClass *) class;
- parent_class = gtk_type_class (TYPE_COMP_EDITOR_PAGE);
+ parent_class = g_type_class_ref(TYPE_COMP_EDITOR_PAGE);
editor_page_class->get_widget = schedule_page_get_widget;
editor_page_class->focus_main_widget = schedule_page_focus_main_widget;
@@ -178,11 +178,11 @@ schedule_page_destroy (GtkObject *object)
priv = spage->priv;
if (priv->xml) {
- gtk_object_unref (GTK_OBJECT (priv->xml));
+ g_object_unref((priv->xml));
priv->xml = NULL;
}
- gtk_object_unref (GTK_OBJECT (priv->model));
+ g_object_unref((priv->model));
g_free (priv);
spage->priv = NULL;
@@ -399,7 +399,7 @@ init_widgets (SchedulePage *spage)
priv = spage->priv;
- gtk_signal_connect (GTK_OBJECT (priv->sel),
+ g_signal_connect((priv->sel),
"changed", times_changed_cb, spage);
return TRUE;
@@ -439,7 +439,7 @@ schedule_page_construct (SchedulePage *spage, EMeetingModel *emm)
}
/* Model */
- gtk_object_ref (GTK_OBJECT (emm));
+ g_object_ref((emm));
priv->model = emm;
/* Selector */
@@ -476,7 +476,7 @@ schedule_page_new (EMeetingModel *emm)
spage = gtk_type_new (TYPE_SCHEDULE_PAGE);
if (!schedule_page_construct (spage, emm)) {
- gtk_object_unref (GTK_OBJECT (spage));
+ g_object_unref((spage));
return NULL;
}