diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-03-30 01:29:46 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-03-30 01:29:46 +0800 |
commit | 72f0d0c0001ed7de14640579b9473fed811b866c (patch) | |
tree | a666a4db9172c1fa9879092b534b3613d81e5e68 /mail/message-list.c | |
parent | b12d14e70117e2287cf3b11137c1f2636c09f4d9 (diff) | |
download | gsoc2013-evolution-72f0d0c0001ed7de14640579b9473fed811b866c.tar gsoc2013-evolution-72f0d0c0001ed7de14640579b9473fed811b866c.tar.gz gsoc2013-evolution-72f0d0c0001ed7de14640579b9473fed811b866c.tar.bz2 gsoc2013-evolution-72f0d0c0001ed7de14640579b9473fed811b866c.tar.lz gsoc2013-evolution-72f0d0c0001ed7de14640579b9473fed811b866c.tar.xz gsoc2013-evolution-72f0d0c0001ed7de14640579b9473fed811b866c.tar.zst gsoc2013-evolution-72f0d0c0001ed7de14640579b9473fed811b866c.zip |
Fix "incompatible pointer type" warnings (#360619).
2007-03-29 Matthew Barnes <mbarnes@redhat.com>
* calendar/gui/e-day-view.c:
* calendar/gui/e-week-view.c:
* calendar/gui/tasks-control.c:
* composer/e-msg-composer-select-file.c:
* mail/em-account-editor.c:
* mail/em-folder-view.c:
* mail/em-format-html-display.c:
* mail/em-format-html.c:
* mail/em-format.h:
* mail/em-mailer-prefs.c:
* mail/em-vfolder-rule.c:
* mail/mail-ops.c:
* mail/mail-send-recv.c:
* mail/message-list.c:
* plugins/bbdb/gaimbuddies.c:
* plugins/itip-formatter/itip-formatter.c:
* plugins/save-calendar/save-calendar.c:
* shell/e-shell-window.c:
* widgets/misc/e-icon-entry.c:
* widgets/table/e-table-header-utils.c:
* widgets/table/e-table-item.c:
* widgets/table/e-tree-header-item.c:
* widgets/table/e-tree-table-adapter.c:
Fix "incompatible pointer type" warnings (#360619).
svn path=/trunk/; revision=33339
Diffstat (limited to 'mail/message-list.c')
-rw-r--r-- | mail/message-list.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index 2634abadeb..3fda8b9f08 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -1551,9 +1551,9 @@ static ECell * create_composite_cell (int col) "color_column", COL_COLOUR, NULL); - e_cell_hbox_append (cell_hbox, cell_from, show_email ? col : alt_col, 68); - e_cell_hbox_append (cell_hbox, cell_attach, COL_ATTACHMENT, 5); - e_cell_hbox_append (cell_hbox, cell_date, COL_SENT, 27); + e_cell_hbox_append (E_CELL_HBOX (cell_hbox), cell_from, show_email ? col : alt_col, 68); + e_cell_hbox_append (E_CELL_HBOX (cell_hbox), cell_attach, COL_ATTACHMENT, 5); + e_cell_hbox_append (E_CELL_HBOX (cell_hbox), cell_date, COL_SENT, 27); cell_sub = e_cell_text_new(fixed_name? fixed_name:NULL, GTK_JUSTIFY_LEFT); g_object_set (G_OBJECT (cell_sub), @@ -1561,12 +1561,12 @@ static ECell * create_composite_cell (int col) "color_column", COL_COLOUR, NULL); cell_tree = e_cell_tree_new (NULL, NULL, TRUE, cell_sub); - e_cell_vbox_append (cell_vbox, cell_hbox, COL_FROM); - e_cell_vbox_append (cell_vbox, cell_tree, COL_SUBJECT); + e_cell_vbox_append (E_CELL_VBOX (cell_vbox), cell_hbox, COL_FROM); + e_cell_vbox_append (E_CELL_VBOX (cell_vbox), cell_tree, COL_SUBJECT); - g_object_set_data (cell_vbox, "cell_date", cell_date); - g_object_set_data (cell_vbox, "cell_sub", cell_sub); - g_object_set_data (cell_vbox, "cell_from", cell_from); + g_object_set_data (G_OBJECT (cell_vbox), "cell_date", cell_date); + g_object_set_data (G_OBJECT (cell_vbox), "cell_sub", cell_sub); + g_object_set_data (G_OBJECT (cell_vbox), "cell_from", cell_from); g_free (fixed_name); @@ -1576,8 +1576,8 @@ static ECell * create_composite_cell (int col) static void composite_cell_set_strike_col (ECell *cell, int col) { - g_object_set (g_object_get_data(cell, "cell_date"), "strikeout_column", col, NULL); - g_object_set (g_object_get_data(cell, "cell_from"), "strikeout_column", col, NULL); + g_object_set (G_OBJECT (g_object_get_data(G_OBJECT (cell), "cell_date")), "strikeout_column", col, NULL); + g_object_set (G_OBJECT (g_object_get_data(G_OBJECT (cell), "cell_from")), "strikeout_column", col, NULL); } static ETableExtras * @@ -1720,7 +1720,7 @@ message_list_setup_etree (MessageList *message_list, gboolean outgoing) d(printf ("folder name is '%s'\n", name)); path = mail_config_folder_to_cachename (message_list->folder, "et-expanded-"); - g_object_set_data (((GnomeCanvasItem *) item)->canvas, "freeze-cursor", 1); + g_object_set_data (G_OBJECT (((GnomeCanvasItem *) item)->canvas), "freeze-cursor", 1); if (path && g_stat (path, &st) == 0 && st.st_size > 0 && S_ISREG (st.st_mode)) { /* build based on saved file */ |