diff options
author | raveit65 <[email protected]> | 2015-08-29 12:46:12 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2015-08-29 14:17:17 +0200 |
commit | cd02d2aebdd7bd394b0b2749f804a49ae01fa2f1 (patch) | |
tree | 450fe884b0823ae27578173efeb5672425518055 | |
parent | ffa3f5cad0ed50833d6989ca72dd93e77d4b3400 (diff) | |
download | mate-control-center-cd02d2aebdd7bd394b0b2749f804a49ae01fa2f1.tar.bz2 mate-control-center-cd02d2aebdd7bd394b0b2749f804a49ae01fa2f1.tar.xz |
Fontviewer: fix deprecated-GThread-API
-rw-r--r-- | font-viewer/totem-resources.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/font-viewer/totem-resources.c b/font-viewer/totem-resources.c index f3831e71..96e90524 100644 --- a/font-viewer/totem-resources.c +++ b/font-viewer/totem-resources.c @@ -112,7 +112,7 @@ totem_resources_monitor_start (const char *input, gint wall_clock_time) sleep_time = wall_clock_time; finished = FALSE; - g_thread_create (time_monitor, (gpointer) input, FALSE, NULL); + g_thread_new ("time-monitor", time_monitor, (gpointer) input); } void |