[Frugalware-git] fwife: Fix a bug causing troubles with gettext
Elentir
elentir at mailoo.org
Tue Jul 14 23:22:14 CEST 2009
Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=f6922f959f332885dc7deab5f391827ce59985be
commit f6922f959f332885dc7deab5f391827ce59985be
Author: Elentir <elentir at mailoo.org>
Date: Tue Jul 14 23:22:49 2009 +0200
Fix a bug causing troubles with gettext
diff --git a/src/plugins/timeconf.c b/src/plugins/timeconf.c
index 223772d..4d10cfc 100644
--- a/src/plugins/timeconf.c
+++ b/src/plugins/timeconf.c
@@ -446,7 +446,7 @@ int prerun(GList **config)
0, country, -1);
gtk_tree_store_append(GTK_TREE_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(timeview))), &child_iter, &iter);
gtk_tree_store_set(GTK_TREE_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(timeview))), &child_iter,
- 0, city,1,_((char*)g_list_nth_data(zonetime, i+3)), -1);
+ 0, city,1,(char*)g_list_nth_data(zonetime, i+3), -1);
}
else
@@ -455,7 +455,7 @@ int prerun(GList **config)
return(-1);
gtk_tree_store_append(GTK_TREE_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(timeview))), &child_iter, &iter);
gtk_tree_store_set(GTK_TREE_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(timeview))), &child_iter,
- 0, city,1,_((char*)g_list_nth_data(zonetime, i+3)), -1);
+ 0, city,1,(char*)g_list_nth_data(zonetime, i+3), -1);
}
FREE(country);
FREE(elem);
More information about the Frugalware-git
mailing list