diff options
author | Not Zed <NotZed@Ximian.com> | 2003-01-10 12:56:20 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2003-01-10 12:56:20 +0800 |
commit | e4d884f1b6ab70f46da87d392b381d0082fd07b9 (patch) | |
tree | ec4742c48929fa94f07df8f6fc7cdca63cd35d01 /shell | |
parent | 0c591f63c69e84d75c119b3724c9315acbadbe14 (diff) | |
download | gsoc2013-evolution-e4d884f1b6ab70f46da87d392b381d0082fd07b9.tar gsoc2013-evolution-e4d884f1b6ab70f46da87d392b381d0082fd07b9.tar.gz gsoc2013-evolution-e4d884f1b6ab70f46da87d392b381d0082fd07b9.tar.bz2 gsoc2013-evolution-e4d884f1b6ab70f46da87d392b381d0082fd07b9.tar.lz gsoc2013-evolution-e4d884f1b6ab70f46da87d392b381d0082fd07b9.tar.xz gsoc2013-evolution-e4d884f1b6ab70f46da87d392b381d0082fd07b9.tar.zst gsoc2013-evolution-e4d884f1b6ab70f46da87d392b381d0082fd07b9.zip |
remove cast to GTK_OBJECT, it isn't, nor needed.
2003-01-10 Not Zed <NotZed@Ximian.com>
* evolution-config-control.c (impl_apply): remove cast to
GTK_OBJECT, it isn't, nor needed.
svn path=/trunk/; revision=19394
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/evolution-config-control.c | 2 |
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; } |