aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-cell-popup.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-popup.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-popup.c')
-rw-r--r--widgets/table/e-cell-popup.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/widgets/table/e-cell-popup.c b/widgets/table/e-cell-popup.c
index c4ca572a85..62777792b3 100644
--- a/widgets/table/e-cell-popup.c
+++ b/widgets/table/e-cell-popup.c
@@ -99,12 +99,6 @@ static gdouble ecp_print_height (ECellView *ecv,
static gint ecp_max_width (ECellView *ecv,
gint model_col,
gint view_col);
-static void ecp_show_tooltip (ECellView *ecv,
- gint model_col,
- gint view_col,
- gint row,
- gint col_width,
- ETableTooltip *tooltip);
static gchar *ecp_get_bg_color (ECellView *ecell_view, gint row);
static gint e_cell_popup_do_popup (ECellPopupView *ecp_view,
@@ -133,7 +127,6 @@ e_cell_popup_class_init (ECellPopupClass *klass)
ecc->print = ecp_print;
ecc->print_height = ecp_print_height;
ecc->max_width = ecp_max_width;
- ecc->show_tooltip = ecp_show_tooltip;
ecc->get_bg_color = ecp_get_bg_color;
gal_a11y_e_cell_registry_add_cell_type (NULL,
@@ -424,20 +417,6 @@ ecp_max_width (ECellView *ecv,
return e_cell_max_width (ecp_view->child_view, model_col, view_col);
}
-static void
-ecp_show_tooltip (ECellView *ecv,
- gint model_col,
- gint view_col,
- gint row,
- gint col_width,
- ETableTooltip *tooltip)
-{
- ECellPopupView *ecp_view = (ECellPopupView *) ecv;
-
- e_cell_show_tooltip (ecp_view->child_view, model_col, view_col, row,
- col_width, tooltip);
-}
-
static gchar *
ecp_get_bg_color (ECellView *ecell_view, gint row)
{