diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2004-09-30 16:42:11 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2004-09-30 16:42:11 +0800 |
commit | 5f1eb8c6548aa6f56bd8c69333562431f0c0eadc (patch) | |
tree | 8bd5b9a85c4cd934e31d0ea76a80d07af1e5834c /shell/e-shell-importer.c | |
parent | 55e921af93354f13406657f4a5d68c5e426d9402 (diff) | |
download | gsoc2013-evolution-5f1eb8c6548aa6f56bd8c69333562431f0c0eadc.tar.gz gsoc2013-evolution-5f1eb8c6548aa6f56bd8c69333562431f0c0eadc.tar.zst gsoc2013-evolution-5f1eb8c6548aa6f56bd8c69333562431f0c0eadc.zip |
use g_timeout_add().
2004-09-30 Kjartan Maraas <kmaraas@gnome.org>
* e-shell-importer.c: (import_cb): use g_timeout_add().
* importer/intelligent.c: (select_row_cb), (unselect_row_cb),
svn path=/trunk/; revision=27435
Diffstat (limited to 'shell/e-shell-importer.c')
-rw-r--r-- | shell/e-shell-importer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c index d8608371ff..2ad0899580 100644 --- a/shell/e-shell-importer.c +++ b/shell/e-shell-importer.c @@ -214,13 +214,13 @@ import_cb (EvolutionImporterListener *listener, IN; if (icd->stop != TRUE) { if (result == EVOLUTION_IMPORTER_NOT_READY) { - gtk_timeout_add (500, importer_timeout_fn, data); + g_timeout_add (500, importer_timeout_fn, data); OUT; return; } if (result == EVOLUTION_IMPORTER_BUSY) { - gtk_timeout_add (500, importer_timeout_fn, data); + g_timeout_add (500, importer_timeout_fn, data); OUT; return; } |