aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-meeting-time-sel.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-11-09 06:11:10 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-11-09 06:11:10 +0800
commite0dfbb056c3dcdbc1a29823b6c273901ade29598 (patch)
tree237e558c2e4cbb8141351fdb86d09bd000c6a05c /calendar/gui/e-meeting-time-sel.c
parentcdbcf964e2829e4c4002dcf2fd229f3b2cf88e56 (diff)
downloadgsoc2013-evolution-e0dfbb056c3dcdbc1a29823b6c273901ade29598.tar
gsoc2013-evolution-e0dfbb056c3dcdbc1a29823b6c273901ade29598.tar.gz
gsoc2013-evolution-e0dfbb056c3dcdbc1a29823b6c273901ade29598.tar.bz2
gsoc2013-evolution-e0dfbb056c3dcdbc1a29823b6c273901ade29598.tar.lz
gsoc2013-evolution-e0dfbb056c3dcdbc1a29823b6c273901ade29598.tar.xz
gsoc2013-evolution-e0dfbb056c3dcdbc1a29823b6c273901ade29598.tar.zst
gsoc2013-evolution-e0dfbb056c3dcdbc1a29823b6c273901ade29598.zip
Use g_object_set_data(..., NULL) instead of gtk_object_remove_data().
* gui/calendar-commands.c (calendar_control_deactivate): Use g_object_set_data(..., NULL) instead of gtk_object_remove_data(). * gui/calendar-commands.c: Use g_object_{set,get}_* functions instead of gtk_object_{set,get}_*. * gui/calendar-commands.c: Likewise. * gui/calendar-config.c: Likewise. * gui/control-factory.c: Likewise. * gui/e-calendar-table.c: Likewise. * gui/e-comp-editor-registry.c: Likewise. * gui/e-day-view-main-item.c: Likewise. * gui/e-day-view-time-item.c: Likewise. * gui/e-day-view-top-item.c: Likewise. * gui/e-day-view.c: Likewise. * gui/e-meeting-attendee.c: Likewise. * gui/e-meeting-model.c: Likewise. * gui/e-meeting-time-sel-item.c: Likewise. * gui/e-meeting-time-sel.c: Likewise. * gui/e-week-view-event-item.c: Likewise. * gui/e-week-view-layout.c: Likewise. * gui/e-week-view-main-item.c: Likewise. * gui/e-week-view-titles-item.c: Likewise. * gui/e-week-view.c: Likewise. * gui/gnome-cal.c: Likewise. * gui/print.c: Likewise. svn path=/trunk/; revision=18674
Diffstat (limited to 'calendar/gui/e-meeting-time-sel.c')
-rw-r--r--calendar/gui/e-meeting-time-sel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-meeting-time-sel.c b/calendar/gui/e-meeting-time-sel.c
index 058be4b1fc..e990fb2489 100644
--- a/calendar/gui/e-meeting-time-sel.c
+++ b/calendar/gui/e-meeting-time-sel.c
@@ -349,7 +349,7 @@ e_meeting_time_selector_construct (EMeetingTimeSelector * mts, EMeetingModel *em
filename = g_strdup_printf ("%s/config/et-header-meeting-time-sel", evolution_dir);
mts->model = emm;
if (mts->model)
- gtk_object_ref (GTK_OBJECT (mts->model));
+ g_object_ref (mts->model);
g_signal_connect (mts->model, "model_rows_inserted", G_CALLBACK (rows_inserted_cb), mts);
g_signal_connect (mts->model, "model_cell_changed", G_CALLBACK (cell_changed_cb), mts);
@@ -1399,7 +1399,7 @@ e_meeting_time_selector_on_invite_others_button_draw (GtkWidget *button,
gboolean click_to_add = TRUE;
real_table = e_table_scrolled_get_table (E_TABLE_SCROLLED (mts->etable));
- gtk_object_get (GTK_OBJECT (real_table), "use_click_to_add", &click_to_add, NULL);
+ g_object_get (G_OBJECT (real_table), "use_click_to_add", &click_to_add, NULL);
gtk_widget_set_sensitive (button, click_to_add);
}