r3538 - in trunk/src/target/OM-2007.2/applications/openmoko-calculator2: . src

mickey at sita.openmoko.org mickey at sita.openmoko.org
Fri Nov 30 17:05:36 CET 2007


Author: mickey
Date: 2007-11-30 17:05:35 +0100 (Fri, 30 Nov 2007)
New Revision: 3538

Modified:
   trunk/src/target/OM-2007.2/applications/openmoko-calculator2/ChangeLog
   trunk/src/target/OM-2007.2/applications/openmoko-calculator2/src/calc-main.c
Log:
openmoko-calculator2: use proper glyphs for /, *, etc. -- patch by Ross Burton



Modified: trunk/src/target/OM-2007.2/applications/openmoko-calculator2/ChangeLog
===================================================================
--- trunk/src/target/OM-2007.2/applications/openmoko-calculator2/ChangeLog	2007-11-30 11:44:15 UTC (rev 3537)
+++ trunk/src/target/OM-2007.2/applications/openmoko-calculator2/ChangeLog	2007-11-30 16:05:35 UTC (rev 3538)
@@ -0,0 +1,5 @@
+2007-30-11	Michael Lauer	<mickey at openmoko.org>
+
+	* src/openmoko-calculator.c: use proper glyphs for /, *, etc.
+	(patch by Ross Burton)
+

Modified: trunk/src/target/OM-2007.2/applications/openmoko-calculator2/src/calc-main.c
===================================================================
--- trunk/src/target/OM-2007.2/applications/openmoko-calculator2/src/calc-main.c	2007-11-30 11:44:15 UTC (rev 3537)
+++ trunk/src/target/OM-2007.2/applications/openmoko-calculator2/src/calc-main.c	2007-11-30 16:05:35 UTC (rev 3538)
@@ -68,11 +68,11 @@
 #define CALC_ROWS 5
 #define CALC_COLS 4
 static const gchar *label[CALC_ROWS][CALC_COLS] = {
-    {N_("CE"), N_("C"), "/", "*" },
+  {N_("CE"), N_("C"), "\303\267" /* divide */, "\303\227" /* multiply */ },
     {"7", "8", "9", "+"},
-    {"4", "5", "6", "-"},
+    {"4", "5", "6", "\342\210\222" /* minus */},
     {"1", "2", "3", "="},
-    {"0", N_("."), "+/-", "none"},
+    {"0", N_("."), "\302\261" /* plus/minus */, "none"},
   };
 static enum operation ops[CALC_ROWS][CALC_COLS] = {
     { clearall, clear, div, mult},





More information about the commitlog mailing list