Revert "Fix the cmp implementation for variant values"

This reverts commit 566e64a660.

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:22:17 +01:00
parent 5faac84413
commit a06117d062

View File

@ -1155,7 +1155,7 @@ param_variant_values_cmp (GParamSpec *pspec,
GVariant *v1 = value1->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 --- */