diff options
author | Chris Toshok <toshok@ximian.com> | 2002-11-15 10:49:15 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-11-15 10:49:15 +0800 |
commit | f60cb1f5371ad819960d43585cdd4b28eb465e59 (patch) | |
tree | 22776e01f6c3c6ed8e7298a34ae6b9b6b5abccae /widgets/table/e-table-header-item.c | |
parent | b39be5377514b9bc3c43b7f5172645edd683e683 (diff) | |
download | gsoc2013-evolution-f60cb1f5371ad819960d43585cdd4b28eb465e59.tar.gz gsoc2013-evolution-f60cb1f5371ad819960d43585cdd4b28eb465e59.tar.zst gsoc2013-evolution-f60cb1f5371ad819960d43585cdd4b28eb465e59.zip |
ETableConfig derives from GObject (fix warnings).
2002-11-14 Chris Toshok <toshok@ximian.com>
* e-table-header-item.c (ethi_popup_customize_view): ETableConfig
derives from GObject (fix warnings).
* e-table.c: deal with ESorter deriving from GObject.
* e-table-sorter.[ch]: this derives from GObject now.
svn path=/trunk/; revision=18775
Diffstat (limited to 'widgets/table/e-table-header-item.c')
-rw-r--r-- | widgets/table/e-table-header-item.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/widgets/table/e-table-header-item.c b/widgets/table/e-table-header-item.c index e06eb0b683..cdc2dc7196 100644 --- a/widgets/table/e-table-header-item.c +++ b/widgets/table/e-table-header-item.c @@ -1445,12 +1445,12 @@ ethi_popup_customize_view(GtkWidget *widget, EthiHeaderInfo *info) ethi->config = e_table_config_new ( _("Customize Current View"), spec, state); - gtk_signal_connect ( - GTK_OBJECT (ethi->config), "destroy", - GTK_SIGNAL_FUNC (config_destroyed), ethi); - gtk_signal_connect ( - GTK_OBJECT (ethi->config), "changed", - GTK_SIGNAL_FUNC (apply_changes), ethi); + g_signal_connect ( + ethi->config, "destroy", + G_CALLBACk (config_destroyed), ethi); + g_signal_connect ( + ethi->config, "changed", + G_CALLBACk (apply_changes), ethi); } } |