diff options
author | Stefano Karapetsas <[email protected]> | 2013-10-05 22:59:01 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-10-05 22:59:01 +0200 |
commit | 46bb12414bfc1d3ea881d4eae7be0b44ed418b54 (patch) | |
tree | c8e201ba037fa043efbade80fb98670b76cbce1f /font-viewer | |
parent | 9f1904eeddfa21a9221d4fa00dd389aa50431ed1 (diff) | |
download | mate-control-center-46bb12414bfc1d3ea881d4eae7be0b44ed418b54.tar.bz2 mate-control-center-46bb12414bfc1d3ea881d4eae7be0b44ed418b54.tar.xz |
Fix some deprecations and remove some unused vars
Diffstat (limited to 'font-viewer')
-rw-r--r-- | font-viewer/font-thumbnailer.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/font-viewer/font-thumbnailer.c b/font-viewer/font-thumbnailer.c index 45928e63..24525f64 100644 --- a/font-viewer/font-thumbnailer.c +++ b/font-viewer/font-thumbnailer.c @@ -256,8 +256,12 @@ main(int argc, char **argv) setlocale (LC_ALL, ""); +#if !GLIB_CHECK_VERSION (2, 36, 0) g_type_init (); +#endif +#if !GLIB_CHECK_VERSION (2, 32, 0) g_thread_init (NULL); +#endif context = g_option_context_new (NULL); g_option_context_add_main_entries (context, options, GETTEXT_PACKAGE); |