aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-cell.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-01-14 11:16:08 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-01-15 00:34:28 +0800
commit999074a9c6d6844c9786dfb1b141509762c7df99 (patch)
tree22c04abc2da54ae1f0daf505e4562d31c34ff38a /widgets/table/e-cell.c
parentfc467ec898ca8092c16d45e3d44618711cd76107 (diff)
downloadgsoc2013-evolution-999074a9c6d6844c9786dfb1b141509762c7df99.tar
gsoc2013-evolution-999074a9c6d6844c9786dfb1b141509762c7df99.tar.gz
gsoc2013-evolution-999074a9c6d6844c9786dfb1b141509762c7df99.tar.bz2
gsoc2013-evolution-999074a9c6d6844c9786dfb1b141509762c7df99.tar.lz
gsoc2013-evolution-999074a9c6d6844c9786dfb1b141509762c7df99.tar.xz
gsoc2013-evolution-999074a9c6d6844c9786dfb1b141509762c7df99.tar.zst
gsoc2013-evolution-999074a9c6d6844c9786dfb1b141509762c7df99.zip
Remove unused ECell::show_tooltip method.
Diffstat (limited to 'widgets/table/e-cell.c')
-rw-r--r--widgets/table/e-cell.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/widgets/table/e-cell.c b/widgets/table/e-cell.c
index be674e6374..4c32c18e77 100644
--- a/widgets/table/e-cell.c
+++ b/widgets/table/e-cell.c
@@ -127,12 +127,6 @@ ec_free_state (ECellView *ecell_view, gint model_col, gint view_col, gint row, g
}
static void
-ec_show_tooltip (ECellView *ecell_view, gint model_col, gint view_col, gint row, gint col_width, ETableTooltip *tooltip)
-{
- /* Do nothing */
-}
-
-static void
e_cell_class_init (ECellClass *klass)
{
klass->realize = ec_realize;
@@ -153,7 +147,6 @@ e_cell_class_init (ECellClass *klass)
klass->print_height = NULL;
klass->max_width = NULL;
klass->max_width_by_row = NULL;
- klass->show_tooltip = ec_show_tooltip;
}
static void
@@ -473,14 +466,6 @@ e_cell_max_width_by_row_implemented (ECellView *ecell_view)
return (ECVIEW_EC_CLASS(ecell_view)->max_width_by_row != NULL);
}
-void
-e_cell_show_tooltip (ECellView *ecell_view, gint model_col, gint view_col,
- gint row, gint col_width, ETableTooltip *tooltip)
-{
- ECVIEW_EC_CLASS(ecell_view)->show_tooltip
- (ecell_view, model_col, view_col, row, col_width, tooltip);
-}
-
gchar *
e_cell_get_bg_color(ECellView *ecell_view, gint row)
{