diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2008-05-23 02:00:17 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-05-23 02:00:17 +0800 |
commit | f7550c81c76341c09378b42a05485c0f1da72441 (patch) | |
tree | ebce84fb5f923bf5c594935f69d5311e4fe10603 /calendar | |
parent | e99e12428d46db3be2878f6c2ca63bd7510149f4 (diff) | |
download | gsoc2013-evolution-f7550c81c76341c09378b42a05485c0f1da72441.tar.gz gsoc2013-evolution-f7550c81c76341c09378b42a05485c0f1da72441.tar.zst gsoc2013-evolution-f7550c81c76341c09378b42a05485c0f1da72441.zip |
** Fix a bunch of compiler warnings.
2008-05-22 Matthew Barnes <mbarnes@redhat.com>
** Fix a bunch of compiler warnings.
* calendar/gui/e-select-names-renderer.c
(e_select_names_renderer_focus_out_event):
Remove this function. Looks like it hasn't been used in years.
* mail/em-format-html.c (efh_message_external):
Fix a typo in checking for an empty 'mode' string.
* mail/message-list.c (subtree_size):
Remove this function. Looks like it hasn't been used in years.
* plugins/email-custom-header/email-custom-header.c
(action_email_custom_header_cb):
Remove unused 'editor' variable.
* plugins/save-calendar/csv-format.c (do_save_calendar_csv):
* plugins/save-calendar/rdf-format.c (do_save_calendar_rdf):
Remove pointless address check of a local variable.
svn path=/trunk/; revision=35527
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/e-select-names-renderer.c | 9 |
2 files changed, 6 insertions, 9 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index e6cf38cca7..b64e4bf7e3 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,11 @@ 2008-05-22 Matthew Barnes <mbarnes@redhat.com> + * gui/e-select-names-renderer.c + (e_select_names_renderer_focus_out_event): + Remove this unused function. + +2008-05-22 Matthew Barnes <mbarnes@redhat.com> + ** Fixes part of bug #534360 * conduits/calendar/calendar-conduit.c: diff --git a/calendar/gui/e-select-names-renderer.c b/calendar/gui/e-select-names-renderer.c index df0a1ef57f..789d185c8d 100644 --- a/calendar/gui/e-select-names-renderer.c +++ b/calendar/gui/e-select-names-renderer.c @@ -81,15 +81,6 @@ e_select_names_renderer_editing_done (GtkCellEditable *editable, ESelectNamesRen cell->priv->editable = NULL; } -static gboolean -e_select_names_renderer_focus_out_event (GtkWidget *entry, GdkEvent *event, ESelectNamesRenderer *cell) -{ - e_select_names_renderer_editing_done (GTK_CELL_EDITABLE (cell->priv->editable), cell); - - /* entry needs focus-out-event */ - return FALSE; -} - static GtkCellEditable * e_select_names_renderer_start_editing (GtkCellRenderer *cell, GdkEvent *event, GtkWidget *widget, const gchar *path, GdkRectangle *bg_area, GdkRectangle *cell_area, GtkCellRendererState flags) |