[gq-commit] gq/src formfill.c,1.38,1.39 input.c,1.70,1.71
Status: Beta
Brought to you by:
sur5r
From: <sta...@us...> - 2003-10-17 06:29:29
|
Update of /cvsroot/gqclient/gq/src In directory sc8-pr-cvs1:/tmp/cvs-serv27591 Modified Files: formfill.c input.c Log Message: * Statusbar messages start with an uppercase letter now Index: formfill.c =================================================================== RCS file: /cvsroot/gqclient/gq/src/formfill.c,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** formfill.c 8 Oct 2003 22:01:08 -0000 1.38 --- formfill.c 17 Oct 2003 06:28:59 -0000 1.39 *************** *** 183,191 **** #if GTK_MAJOR >= 2 ! statusbar_msg(_("fetching %1$s from %2$s"), dn, server->name); #else { char *c = NULL; ! statusbar_msg(_("fetching %1$s from %2$s"), c = decoded_string(dn), server->name); if (c) free(c); --- 183,191 ---- #if GTK_MAJOR >= 2 ! statusbar_msg(_("Fetching %1$s from %2$s"), dn, server->name); #else { char *c = NULL; ! statusbar_msg(_("Fetching %1$s from %2$s"), c = decoded_string(dn), server->name); if (c) free(c); Index: input.c =================================================================== RCS file: /cvsroot/gqclient/gq/src/input.c,v retrieving revision 1.70 retrieving revision 1.71 diff -C2 -d -r1.70 -r1.71 *** input.c 13 Oct 2003 08:43:13 -0000 1.70 --- input.c 17 Oct 2003 06:28:59 -0000 1.71 *************** *** 1429,1436 **** #if GTK_MAJOR >= 2 ! statusbar_msg(_("modified %s"), olddn); #else c = decoded_string(olddn); ! statusbar_msg(_("modified %s"), c); if(c) free(c); #endif --- 1429,1436 ---- #if GTK_MAJOR >= 2 ! statusbar_msg(_("Modified %s"), olddn); #else c = decoded_string(olddn); ! statusbar_msg(_("Modified %s"), c); if(c) free(c); #endif *************** *** 1509,1515 **** if(!error) { #if GTK_MAJOR >= 2 ! statusbar_msg(_("modifying RDN to %s"), rdn[0]); #else ! statusbar_msg(_("modifying RDN to %s"), c = decoded_string(rdn[0])); if (c) free(c); --- 1509,1515 ---- if(!error) { #if GTK_MAJOR >= 2 ! statusbar_msg(_("Modifying RDN to %s"), rdn[0]); #else ! statusbar_msg(_("Modifying RDN to %s"), c = decoded_string(rdn[0])); if (c) free(c); |