diff options
Diffstat (limited to 'widgets/table/e-cell.c')
-rw-r--r-- | widgets/table/e-cell.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/widgets/table/e-cell.c b/widgets/table/e-cell.c index 729207b32f..b440370fb3 100644 --- a/widgets/table/e-cell.c +++ b/widgets/table/e-cell.c @@ -489,4 +489,11 @@ e_cell_get_bg_color(ECellView *ecell_view, int row) else return NULL; } + +void +e_cell_style_set(ECellView *ecell_view, GtkStyle *previous_style) +{ + if (ECVIEW_EC_CLASS(ecell_view)->style_set) + ECVIEW_EC_CLASS(ecell_view)->style_set (ecell_view, previous_style); +} |