GNOME Bugzilla – Bug 560445
GNOME Goal: Remove deprecated GLib symbols
Last modified: 2008-11-12 10:06:51 UTC
See http://live.gnome.org/GnomeGoals/RemoveDeprecatedSymbols/Glib Here are the files+lines using deprecated GLib symbols in this module: metacity/src/include/main.h:38:/* g_main_quit() then fall out of main() */ metacity/src/core/delete.c:494: g_strcasecmp (w->res_class, "metacity-dialog") == 0)
Well, the first one isn't a call, but okay :) Fixed.
Yes, sorry about that, but I'm using egrep to find the deprecated symbols. That way I avoid building every GNOME program for that. Using a thorough regexp slows down the process *a lot*, so I keep using a simple regexp to identify these symbols. Removing them in comments and dead code too allows me to avoid false positives. Thanks for the fix.