diff options
author | raveit65 <[email protected]> | 2017-01-08 20:44:59 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-02-17 12:28:22 +0100 |
commit | 6d69442a4ce0b9153a172783ce859043b2b93c0b (patch) | |
tree | ea3e2ea2cd8450f0bcb7386abafdf62036b8eee1 /font-viewer/font-model.c | |
parent | a925031c13621b333be3e16bda2006fef75592c8 (diff) | |
download | mate-control-center-6d69442a4ce0b9153a172783ce859043b2b93c0b.tar.bz2 mate-control-center-6d69442a4ce0b9153a172783ce859043b2b93c0b.tar.xz |
Fontviewer: Ported thumbnailing io scheduler job to g_task_run_in_thread
taken from:
https://git.gnome.org/browse/gnome-font-viewer/commit/?id=ec331ea
Diffstat (limited to 'font-viewer/font-model.c')
-rw-r--r-- | font-viewer/font-model.c | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/font-viewer/font-model.c b/font-viewer/font-model.c index 17c75bd5..5aaae237 100644 --- a/font-viewer/font-model.c +++ b/font-viewer/font-model.c @@ -211,10 +211,11 @@ create_thumbnail (ThumbInfoData *thumb_info) return pixbuf; } -static gboolean -ensure_thumbnails_job (GIOSchedulerJob *job, - GCancellable *cancellable, - gpointer user_data) +static void +ensure_thumbnails_job (GTask *task, + gpointer source_object, + gpointer user_data, + GCancellable *cancellable) { GList *thumb_infos = user_data, *l; @@ -281,8 +282,6 @@ ensure_thumbnails_job (GIOSchedulerJob *job, } g_list_free (thumb_infos); - - return FALSE; } typedef struct { @@ -320,6 +319,7 @@ font_infos_loaded (gpointer user_data) { LoadFontInfosData *data = user_data; FontViewModel *self = data->self; + GTask *task = NULL; GList *l, *thumb_infos = NULL; for (l = data->font_infos; l != NULL; l = l->next) { @@ -347,9 +347,12 @@ font_infos_loaded (gpointer user_data) g_signal_emit (self, signals[CONFIG_CHANGED], 0); - g_io_scheduler_push_job (ensure_thumbnails_job, - thumb_infos, NULL, - G_PRIORITY_DEFAULT, NULL); + task = g_task_new (NULL, NULL, NULL, NULL); + + g_task_set_task_data (task, thumb_infos, NULL); + + g_task_run_in_thread (task, ensure_thumbnails_job); + g_object_unref (task); return FALSE; } |