plug-ins: use g_thread_new(), g_thread_create() is deprecated

This commit is contained in:
Michael Natterer 2012-11-21 01:47:11 +01:00
parent a60914ec35
commit 9dfe9111ef
1 changed files with 1 additions and 1 deletions

View File

@ -1154,7 +1154,7 @@ load_dialog (PopplerDocument *doc,
thread_data.selector = GIMP_PAGE_SELECTOR (selector);
thread_data.stop_thumbnailing = FALSE;
thread = g_thread_create (thumbnail_thread, &thread_data, TRUE, NULL);
thread = g_thread_new ("thumbnailer", thumbnail_thread, &thread_data);
/* Resolution */