diff options
author | Mike Kestner <mkestner@ximian.com> | 2002-10-04 04:16:49 +0800 |
---|---|---|
committer | Mike Kestner <mkestner@src.gnome.org> | 2002-10-04 04:16:49 +0800 |
commit | 9420fa7f8241d6eb25f69af5189929f6d9f37dc0 (patch) | |
tree | f98805be645472bb75ccc044266ff59f30317977 | |
parent | f79eb8ef5ab309807044ef984804aedd1a597152 (diff) | |
download | gsoc2013-evolution-9420fa7f8241d6eb25f69af5189929f6d9f37dc0.tar gsoc2013-evolution-9420fa7f8241d6eb25f69af5189929f6d9f37dc0.tar.gz gsoc2013-evolution-9420fa7f8241d6eb25f69af5189929f6d9f37dc0.tar.bz2 gsoc2013-evolution-9420fa7f8241d6eb25f69af5189929f6d9f37dc0.tar.lz gsoc2013-evolution-9420fa7f8241d6eb25f69af5189929f6d9f37dc0.tar.xz gsoc2013-evolution-9420fa7f8241d6eb25f69af5189929f6d9f37dc0.tar.zst gsoc2013-evolution-9420fa7f8241d6eb25f69af5189929f6d9f37dc0.zip |
call drop_timeout
2002-10-02 Mike Kestner <mkestner@ximian.com>
* e-table-search.c (e_table_search_destroy): call drop_timeout
svn path=/trunk/; revision=18319
-rw-r--r-- | widgets/table/e-table-search.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/widgets/table/e-table-search.c b/widgets/table/e-table-search.c index dfc08c7cf8..1ec3583076 100644 --- a/widgets/table/e-table-search.c +++ b/widgets/table/e-table-search.c @@ -111,8 +111,7 @@ e_table_search_destroy (GtkObject *object) { ETableSearch *ets = (ETableSearch *) object; - /* FIXME: do we need to unregister the timeout? bad things - might happen if a timeout is still active. */ + drop_timeout (ets); g_free (ets->priv->search_string); g_free (ets->priv); |