Revert "Fix the cmp implementation for variant values"

This reverts commit 623f92ed2d.

This fix went from one broken state to another. The real fix is to use
g_variant_compare(), which is pending review. See bug #795735.

https://bugzilla.gnome.org/show_bug.cgi?id=795735
This commit is contained in:
Philip Withnall
2018-05-04 17:24:31 +01:00
parent cd1f82d8fc
commit 69924c45b9

View File

@@ -1155,7 +1155,7 @@ param_variant_values_cmp (GParamSpec *pspec,
GVariant *v1 = value1->data[0].v_pointer; GVariant *v1 = value1->data[0].v_pointer;
GVariant *v2 = value2->data[0].v_pointer; GVariant *v2 = value2->data[0].v_pointer;
return v1 < v2 ? -1 : v1 > v2; return v1 < v2 ? -1 : v2 > v1;
} }
/* --- type initialization --- */ /* --- type initialization --- */