aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-task-table.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-01-29 06:36:03 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-01-30 22:02:11 +0800
commit8d85229f8fc9ff0e27b1f7790f61605c04337d7b (patch)
tree20d2dd06cc12df2fda95b3af7920a9e2e50cb997 /calendar/gui/e-task-table.c
parent7c02582ae70e45d58bf0966d60e23b50f854a06a (diff)
downloadgsoc2013-evolution-8d85229f8fc9ff0e27b1f7790f61605c04337d7b.tar
gsoc2013-evolution-8d85229f8fc9ff0e27b1f7790f61605c04337d7b.tar.gz
gsoc2013-evolution-8d85229f8fc9ff0e27b1f7790f61605c04337d7b.tar.bz2
gsoc2013-evolution-8d85229f8fc9ff0e27b1f7790f61605c04337d7b.tar.lz
gsoc2013-evolution-8d85229f8fc9ff0e27b1f7790f61605c04337d7b.tar.xz
gsoc2013-evolution-8d85229f8fc9ff0e27b1f7790f61605c04337d7b.tar.zst
gsoc2013-evolution-8d85229f8fc9ff0e27b1f7790f61605c04337d7b.zip
Sidebar cleanups for Memos and Tasks.
Kill the EMemoTable::user-created signal and connect directly to ECalModel::row-appended in e_memo_shell_view_private.c. Same goes for tasks.
Diffstat (limited to 'calendar/gui/e-task-table.c')
-rw-r--r--calendar/gui/e-task-table.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/calendar/gui/e-task-table.c b/calendar/gui/e-task-table.c
index ede56b7b89..e9f3645b30 100644
--- a/calendar/gui/e-task-table.c
+++ b/calendar/gui/e-task-table.c
@@ -87,7 +87,6 @@ enum {
OPEN_COMPONENT,
POPUP_EVENT,
STATUS_MESSAGE,
- USER_CREATED,
LAST_SIGNAL
};
@@ -132,14 +131,6 @@ task_table_emit_status_message (ETaskTable *task_table,
g_signal_emit (task_table, signal_id, 0, message, percent);
}
-static void
-task_table_emit_user_created (ETaskTable *task_table)
-{
- guint signal_id = signals[USER_CREATED];
-
- g_signal_emit (task_table, signal_id, 0);
-}
-
static gint
task_table_percent_compare_cb (gconstpointer a, gconstpointer b, gpointer cmp_cache)
{
@@ -297,10 +288,6 @@ task_table_set_model (ETaskTable *task_table,
task_table->priv->model = g_object_ref (model);
g_signal_connect_swapped (
- model, "row_appended",
- G_CALLBACK (task_table_emit_user_created), task_table);
-
- g_signal_connect_swapped (
model, "cal-view-progress",
G_CALLBACK (task_table_model_cal_view_progress_cb),
task_table);
@@ -1409,15 +1396,6 @@ task_table_class_init (ETaskTableClass *class)
e_marshal_VOID__STRING_DOUBLE,
G_TYPE_NONE, 2,
G_TYPE_STRING, G_TYPE_DOUBLE);
-
- signals[USER_CREATED] = g_signal_new (
- "user-created",
- G_TYPE_FROM_CLASS (class),
- G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
- G_STRUCT_OFFSET (ETaskTableClass, user_created),
- NULL, NULL,
- g_cclosure_marshal_VOID__VOID,
- G_TYPE_NONE, 0);
}
static void