diff options
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; } |