diff options
Diffstat (limited to 'calendar/gui/e-memo-table-config.c')
-rw-r--r-- | calendar/gui/e-memo-table-config.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/calendar/gui/e-memo-table-config.c b/calendar/gui/e-memo-table-config.c index cb3ef06132..064ef0810f 100644 --- a/calendar/gui/e-memo-table-config.c +++ b/calendar/gui/e-memo-table-config.c @@ -30,7 +30,7 @@ struct _EMemoTableConfigPrivate { GList *notifications; }; -G_DEFINE_TYPE (EMemoTableConfig, e_memo_table_config, G_TYPE_OBJECT); +G_DEFINE_TYPE (EMemoTableConfig, e_memo_table_config, G_TYPE_OBJECT) /* Property IDs */ enum props { @@ -42,10 +42,8 @@ static void e_memo_table_config_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { EMemoTableConfig *table_config; - EMemoTableConfigPrivate *priv; table_config = E_MEMO_TABLE_CONFIG (object); - priv = table_config->priv; switch (property_id) { case PROP_TABLE: @@ -61,10 +59,8 @@ static void e_memo_table_config_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { EMemoTableConfig *table_config; - EMemoTableConfigPrivate *priv; table_config = E_MEMO_TABLE_CONFIG (object); - priv = table_config->priv; switch (property_id) { case PROP_TABLE: @@ -80,9 +76,6 @@ static void e_memo_table_config_dispose (GObject *object) { EMemoTableConfig *table_config = E_MEMO_TABLE_CONFIG (object); - EMemoTableConfigPrivate *priv; - - priv = table_config->priv; e_memo_table_config_set_table (table_config, NULL); |