diff options
author | Jason Leach <jasonleach@usa.net> | 2001-05-08 04:30:53 +0800 |
---|---|---|
committer | Jacob Leach <jleach@src.gnome.org> | 2001-05-08 04:30:53 +0800 |
commit | 91d293f6f4108dc74533a45ba363944bbe21d7fb (patch) | |
tree | 6b45d03855b23bbd72fdf14cbd2ee8cea2c6820d /widgets/table/e-table-subset.c | |
parent | a8cdef7243983680240647ba30d8cfa8f9815511 (diff) | |
download | gsoc2013-evolution-91d293f6f4108dc74533a45ba363944bbe21d7fb.tar.gz gsoc2013-evolution-91d293f6f4108dc74533a45ba363944bbe21d7fb.tar.zst gsoc2013-evolution-91d293f6f4108dc74533a45ba363944bbe21d7fb.zip |
(Fix bug #53111: Portability fixes for HP's ANSI compiler.)
2001-04-29 Jason Leach <jasonleach@usa.net>
(Fix bug #53111: Portability fixes for HP's ANSI compiler.)
* e-table-header-item.c (ethi_popup_sort_ascending): Changes for
initializing a struct for picky compiler.
(ethi_popup_sort_descending): Ditto.
(ethi_change_sort_state): Ditto.
* e-cell.c (e_cell_realize): Fix trying to return a value for a
void function.
(e_cell_show_tooltip): Here too.
* e-table-subset.c (etss_set_value_at): Another fix for trying to
return something instead of void.
svn path=/trunk/; revision=9695
Diffstat (limited to 'widgets/table/e-table-subset.c')
-rw-r--r-- | widgets/table/e-table-subset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/table/e-table-subset.c b/widgets/table/e-table-subset.c index 2907698fc7..4edb093d26 100644 --- a/widgets/table/e-table-subset.c +++ b/widgets/table/e-table-subset.c @@ -92,7 +92,7 @@ etss_set_value_at (ETableModel *etm, int col, int row, const void *val) etss->last_access = row; d(g_print("h) Setting last_access to %d\n", row)); - return e_table_model_set_value_at (etss->source, col, etss->map_table [row], val); + e_table_model_set_value_at (etss->source, col, etss->map_table [row], val); } static gboolean |