gnome-games r8486 - trunk/libgames-support
- From: chpe svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-games r8486 - trunk/libgames-support
- Date: Tue, 6 Jan 2009 18:20:09 +0000 (UTC)
Author: chpe
Date: Tue Jan 6 18:20:08 2009
New Revision: 8486
URL: http://svn.gnome.org/viewvc/gnome-games?rev=8486&view=rev
Log:
Improve card theme ordering.
Modified:
trunk/libgames-support/games-card-theme.c
Modified: trunk/libgames-support/games-card-theme.c
==============================================================================
--- trunk/libgames-support/games-card-theme.c (original)
+++ trunk/libgames-support/games-card-theme.c Tue Jan 6 18:20:08 2009
@@ -634,6 +634,35 @@
/* GamesCardThemeInfo impl */
+static int
+theme_type_compare (GType a,
+ GType b)
+{
+ const GType types[] = {
+#ifdef HAVE_HILDON
+ GAMES_TYPE_CARD_THEME_FIXED
+#else
+#ifdef HAVE_RSVG
+ GAMES_TYPE_CARD_THEME_SVG,
+ GAMES_TYPE_CARD_THEME_KDE,
+#endif
+ GAMES_TYPE_CARD_THEME_PYSOL,
+ GAMES_TYPE_CARD_THEME_FIXED,
+ GAMES_TYPE_CARD_THEME_SLICED
+#endif
+ };
+ guint ia, ib;
+
+ for (ia = 0; ia < G_N_ELEMENTS (types); ++ia)
+ if (types[ia] == a)
+ break;
+ for (ib = 0; ib < G_N_ELEMENTS (types); ++ib)
+ if (types[ib] == b)
+ break;
+
+ return ia - ib;
+}
+
/* private API */
/**
@@ -719,7 +748,7 @@
g_return_val_if_fail (a != NULL && b != NULL, 0);
if (a->type != b->type)
- return a->type - b->type;
+ return theme_type_compare (a->type, b->type);
return g_utf8_collate (a->display_name, b->display_name);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]