[gnome-games] libgames-support: Fix #ifdef to use HAVE_MAEMO_3



commit f5b230ba038f2d5c330114981b3f77cee5e4784d
Author: Christian Persch <chpe gnome org>
Date:   Fri Jul 10 01:09:36 2009 +0200

    libgames-support: Fix #ifdef to use HAVE_MAEMO_3
    
    The bug this works around [https://bugs.maemo.org/show_bug.cgi?id=1449]
    is fixed since maemo4.

 libgames-support/games-stock.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/libgames-support/games-stock.c b/libgames-support/games-stock.c
index 838f1c2..353749f 100644
--- a/libgames-support/games-stock.c
+++ b/libgames-support/games-stock.c
@@ -339,14 +339,14 @@ games_stock_init (void)
     { GAMES_STOCK_END_GAME,         N_("_End Game"),          0, 0, NULL },
 #endif
 
-    /* Work around maemo brokenness wrt. stock item translations */
-    /* FIXMEchpe: this only applies to maemo3; should be fixed in maemo4 */
-#ifdef HAVE_HILDON
+#ifdef HAVE_MAEMO_3
+    /* Work around maemo brokenness wrt. stock item translations.
+     * See https://bugs.maemo.org/show_bug.cgi?id=1449 . */
     { GTK_STOCK_ABOUT,              N_("_About"),             0, 0, NULL },
     { GTK_STOCK_CANCEL,             N_("_Cancel"),            0, 0, NULL },
     { GTK_STOCK_CLOSE,              N_("_Close"),             0, 0, NULL },
     { GTK_STOCK_OK,                 N_("_OK"),                0, 0, NULL },
-#endif /* HAVE_HILDON */
+#endif /* HAVE_MAEMO_3 */
   };
 
 #undef STOCK_ACCEL



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