Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=4e77ec3179ac8ebd4f72e5a71d356ec617169787
commit 4e77ec3179ac8ebd4f72e5a71d356ec617169787 Author: Elentir <[email protected]> Date: Sat Feb 28 20:16:12 2009 +0100 fix a bug with stressed characters diff --git a/src/fwife.c b/src/fwife.c index 53f5780..0314d4e 100644 --- a/src/fwife.c +++ b/src/fwife.c @@ -340,7 +340,7 @@ int main (int argc, char *argv[]) } else { LOG("Loading plugin : %s", plugin->name); - pages[i] = (PageInfo) {NULL, -1, GET_UTF8(plugin->desc()), plugin->type, plugin->complete}; + pages[i] = (PageInfo) {NULL, -1, plugin->desc(), plugin->type, plugin->complete}; if((pages[i].widget = plugin->load_gtk_widget()) == NULL) LOG("Error when loading plugin's widget @ %s", plugin->name); diff --git a/src/util.h b/src/util.h index 2629dbc..b6ad631 100644 --- a/src/util.h +++ b/src/util.h @@ -39,7 +39,7 @@ #ifdef _ #undef _ #endif -#define _(text) gettext(text) +#define _(text) GET_UTF8(gettext(text)) #define MALLOC(p, b) do { if((b) > 0) \ { p = malloc(b); if (!(p)) \ _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
