From: Nick Bowler Date: Fri, 7 Feb 2020 02:27:40 +0000 (-0500) Subject: Avoid GLib deprecation warnings when building gob. X-Git-Url: http://git.draconx.ca/gitweb/gob-dx.git/commitdiff_plain/b95b3724f522c3d7ab2ede752e2913287b172b8e?ds=sidebyside;hp=b95b3724f522c3d7ab2ede752e2913287b172b8e Avoid GLib deprecation warnings when building gob. The g_strdown functions are deprecated in GLib, we already have a gob_strdown function which does the same thing with g_ascii_tolower, but it seems a couple spots were missed. There is also a call to g_strcasecmp which can be replaced by g_ascii_strcasecmp. ---