diff options
author | Chris Toshok <toshok@ximian.com> | 2002-11-15 11:06:29 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-11-15 11:06:29 +0800 |
commit | 868a2d664a8ac9d5b9d51833e47c2fe4b7b011d8 (patch) | |
tree | 5f688ffa04e5aafc64255558c640c0834d7fe3c9 | |
parent | 4f5907874da6c128db8276713751a1b0313522b0 (diff) | |
download | gsoc2013-evolution-868a2d664a8ac9d5b9d51833e47c2fe4b7b011d8.tar gsoc2013-evolution-868a2d664a8ac9d5b9d51833e47c2fe4b7b011d8.tar.gz gsoc2013-evolution-868a2d664a8ac9d5b9d51833e47c2fe4b7b011d8.tar.bz2 gsoc2013-evolution-868a2d664a8ac9d5b9d51833e47c2fe4b7b011d8.tar.lz gsoc2013-evolution-868a2d664a8ac9d5b9d51833e47c2fe4b7b011d8.tar.xz gsoc2013-evolution-868a2d664a8ac9d5b9d51833e47c2fe4b7b011d8.tar.zst gsoc2013-evolution-868a2d664a8ac9d5b9d51833e47c2fe4b7b011d8.zip |
fix typo.
2002-11-14 Chris Toshok <toshok@ximian.com>
* e-table-header-item.c (ethi_popup_customize_view): fix typo.
svn path=/trunk/; revision=18777
-rw-r--r-- | widgets/table/e-table-header-item.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/table/e-table-header-item.c b/widgets/table/e-table-header-item.c index cdc2dc7196..a74fa4aabb 100644 --- a/widgets/table/e-table-header-item.c +++ b/widgets/table/e-table-header-item.c @@ -1447,10 +1447,10 @@ ethi_popup_customize_view(GtkWidget *widget, EthiHeaderInfo *info) spec, state); g_signal_connect ( ethi->config, "destroy", - G_CALLBACk (config_destroyed), ethi); + G_CALLBACK (config_destroyed), ethi); g_signal_connect ( ethi->config, "changed", - G_CALLBACk (apply_changes), ethi); + G_CALLBACK (apply_changes), ethi); } } |