aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/evolution-config-control.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index ec1a1bfe50..0f5dd7cf91 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,8 @@
+2003-01-10 Not Zed <NotZed@Ximian.com>
+
+ * evolution-config-control.c (impl_apply): remove cast to
+ GTK_OBJECT, it isn't, nor needed.
+
2003-01-09 Chris Toshok <toshok@ximian.com>
* e-shell-settings-dialog.c (set_dialog_size): use
diff --git a/shell/evolution-config-control.c b/shell/evolution-config-control.c
index 597a826551..3ff03ca76a 100644
--- a/shell/evolution-config-control.c
+++ b/shell/evolution-config-control.c
@@ -103,7 +103,7 @@ impl_apply (PortableServer_Servant servant,
config_control = EVOLUTION_CONFIG_CONTROL (bonobo_object_from_servant (servant));
priv = config_control->priv;
- g_signal_emit (GTK_OBJECT (config_control), signals[APPLY], 0);
+ g_signal_emit (config_control, signals[APPLY], 0);
priv->changed = FALSE;
}