Enlightenment CVS committal Author : raster Project : e17 Module : apps/e
Dir : e17/apps/e/src/modules/cpufreq Modified Files: Makefile.am e_mod_main.c Log Message: cross-compile fixes, (odd that this didnt screw up before when i did some cross-compiling of e for arm), illogict patches too :) =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/e/src/modules/cpufreq/Makefile.am,v retrieving revision 1.9 retrieving revision 1.10 diff -u -3 -r1.9 -r1.10 --- Makefile.am 8 May 2005 22:34:44 -0000 1.9 +++ Makefile.am 18 Feb 2006 04:35:28 -0000 1.10 @@ -11,7 +11,6 @@ # the module .so file INCLUDES = -I. \ -I$(top_srcdir) \ - -I$(includedir) \ -I$(top_srcdir)/$(MODULE) \ -I$(top_srcdir)/src/bin \ -I$(top_srcdir)/src/lib \ =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/e/src/modules/cpufreq/e_mod_main.c,v retrieving revision 1.32 retrieving revision 1.33 diff -u -3 -r1.32 -r1.33 --- e_mod_main.c 20 Jan 2006 04:04:13 -0000 1.32 +++ e_mod_main.c 18 Feb 2006 04:35:28 -0000 1.33 @@ -315,7 +315,7 @@ e_dialog_icon_set(dia, "enlightenment/e", 64); e_dialog_text_set(dia, _("There was an error trying to set the cpu frequency<br>" "governor via the module's setfreq utility.")); - e_dialog_button_add(dia, _("Ok"), NULL, NULL, NULL); + e_dialog_button_add(dia, _("OK"), NULL, NULL, NULL); e_win_centered_set(dia->win, 1); e_dialog_show(dia); } @@ -343,7 +343,7 @@ e_dialog_icon_set(dia, "enlightenment/e", 64); e_dialog_text_set(dia, _("There was an error trying to set the cpu frequency<br>" "setting via the module's setfreq utility.")); - e_dialog_button_add(dia, _("Ok"), NULL, NULL, NULL); + e_dialog_button_add(dia, _("OK"), NULL, NULL, NULL); e_win_centered_set(dia->win, 1); e_dialog_show(dia); } @@ -570,10 +570,10 @@ frequency = (int)l->data; mi = e_menu_item_new(mn); if (frequency < 1000000) - snprintf(buf, sizeof(buf), _("%i Mhz"), + snprintf(buf, sizeof(buf), _("%i MHz"), frequency / 1000); else - snprintf(buf, sizeof(buf), _("%i.%i Ghz"), + snprintf(buf, sizeof(buf), _("%i.%i GHz"), frequency / 1000000, (frequency % 1000000) / 100000); buf[sizeof(buf) - 1] = 0; e_menu_item_label_set(mi, buf); ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs