diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-07-01 07:35:22 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-07-02 22:34:10 +0800 |
commit | f38b9b6fb7a6d7400587d517226803bf3e3aa03b (patch) | |
tree | 84922a08e5f0625cdb7a9458168149b24f814062 /calendar/gui/e-memo-table.c | |
parent | 27c8788ce83ee646fddebeece57c7aecc04c7d38 (diff) | |
download | gsoc2013-evolution-f38b9b6fb7a6d7400587d517226803bf3e3aa03b.tar.gz gsoc2013-evolution-f38b9b6fb7a6d7400587d517226803bf3e3aa03b.tar.zst gsoc2013-evolution-f38b9b6fb7a6d7400587d517226803bf3e3aa03b.zip |
e_table_new_from_spec_file: Remove unused "state_fn" parameter.
Diffstat (limited to 'calendar/gui/e-memo-table.c')
-rw-r--r-- | calendar/gui/e-memo-table.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/calendar/gui/e-memo-table.c b/calendar/gui/e-memo-table.c index 580f378083..4f1a59ba7b 100644 --- a/calendar/gui/e-memo-table.c +++ b/calendar/gui/e-memo-table.c @@ -408,8 +408,9 @@ memo_table_constructed (GObject *object) etspecfile = g_build_filename ( EVOLUTION_ETSPECDIR, "e-memo-table.etspec", NULL); e_table_construct_from_spec_file ( - E_TABLE (memo_table), E_TABLE_MODEL (model), - extras, etspecfile, NULL); + E_TABLE (memo_table), + E_TABLE_MODEL (model), + extras, etspecfile); g_free (etspecfile); gtk_widget_set_has_tooltip (GTK_WIDGET (memo_table), TRUE); |