From: Tim Mann Date: Mon, 30 May 2011 21:12:53 +0000 (-0700) Subject: The empty string can't be translated and it causes the gettext X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=1daf99c1cf13f93d13d9a0f607117560ce0d7891;p=xboard.git The empty string can't be translated and it causes the gettext utilities to complain, so change _("") to "". --- diff --git a/xoptions.c b/xoptions.c index b7fccc1..b47f9a4 100644 --- a/xoptions.c +++ b/xoptions.c @@ -307,7 +307,7 @@ void TimeControlCallback(w, client_data, call_data) XtSetArg(args[j], XtNlabel, _("sec/move (max)")); j++; XtSetValues(tcMess1, args, j); j=0; - XtSetArg(args[j], XtNlabel, _("")); j++; + XtSetArg(args[j], XtNlabel, ""); j++; XtSetValues(tcMess2, args, j); j=0; XtSetArg(args[j], XtNstring, ""); j++;