app: s/gimp_list_compare()/gimp_g_list_compare()/

... so we don't clash with the GimpList namespace.
This commit is contained in:
Ell 2019-05-30 03:30:32 -04:00
parent 08ebcce2fa
commit 8ef461bb70
3 changed files with 4 additions and 4 deletions

View File

@ -859,8 +859,8 @@ gimp_ascii_strtod (const gchar *nptr,
}
gint
gimp_list_compare (GList *list1,
GList *list2)
gimp_g_list_compare (GList *list1,
GList *list2)
{
while (list1 && list2)
{

View File

@ -98,7 +98,7 @@ gboolean gimp_ascii_strtod (const gchar *nptr,
gchar **endptr,
gdouble *result);
gint gimp_list_compare (GList *list1,
gint gimp_g_list_compare (GList *list1,
GList *list2);
GimpImage * gimp_create_image_from_buffer (Gimp *gimp,

View File

@ -512,7 +512,7 @@ gimp_move_tool_oper_update (GimpTool *tool,
FUNSCALEY (shell, snap_distance));
}
if (gimp_list_compare (guides, move->guides))
if (gimp_g_list_compare (guides, move->guides))
{
GimpDrawTool *draw_tool = GIMP_DRAW_TOOL (tool);