[gnome-games/wip/exalm/platform-preferences: 15/28] platform: Add compare()



commit 07a243091ab2714c55ff9603d22b41234530de26
Author: Alexander Mikhaylenko <exalm7659 gmail com>
Date:   Tue Aug 7 21:00:11 2018 +0500

    platform: Add compare()

 src/core/platform.vala | 4 ++++
 1 file changed, 4 insertions(+)
---
diff --git a/src/core/platform.vala b/src/core/platform.vala
index 1077f3be..9d907872 100644
--- a/src/core/platform.vala
+++ b/src/core/platform.vala
@@ -12,4 +12,8 @@ public interface Games.Platform : Object {
        public static bool equal (Platform a, Platform b) {
                return a == b || str_equal (a.get_id (), b.get_id ());
        }
+
+       public static int compare (Platform a, Platform b) {
+               return a.get_name ().collate (b.get_name ());
+       }
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]