Update of /cvsroot/gqclient/gq/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10242/src
Modified Files:
input.c mainwin.c
Log Message:
2006-04-05 Sven Herzberg <he...@gn...>
* intl/*,
* mkinstalldirs,
* ABOUT-NLS: removed auto-generated files
* Makefile.am: updated by gettext
* autogen.sh: new script to generate the build framework
* configure.in: removed po/Makefile
* src/input.c,
* src/mainwin.c: don't try to translate empty strings
Index: input.c
===================================================================
RCS file: /cvsroot/gqclient/gq/src/input.c,v
retrieving revision 1.85
retrieving revision 1.86
diff -C2 -d -r1.85 -r1.86
*** input.c 27 Apr 2005 02:44:16 -0000 1.85
--- input.c 4 Apr 2006 23:34:48 -0000 1.86
***************
*** 1303,1307 ****
(gpointer) edit_window);
! error_context = error_new_context(_(""), edit_window);
vbox = gtk_vbox_new(FALSE, 0);
--- 1303,1307 ----
(gpointer) edit_window);
! error_context = error_new_context("", edit_window);
vbox = gtk_vbox_new(FALSE, 0);
Index: mainwin.c
===================================================================
RCS file: /cvsroot/gqclient/gq/src/mainwin.c,v
retrieving revision 1.55
retrieving revision 1.56
diff -C2 -d -r1.55 -r1.56
*** mainwin.c 3 Nov 2003 21:07:57 -0000 1.55
--- mainwin.c 4 Apr 2006 23:34:48 -0000 1.56
***************
*** 136,140 ****
if (type > 0) {
struct tab *tab = new_modetab(win, type);
! int error_ctx = error_new_context(_(""), pw->win);
if (tab->vtab && tab->vtab->restore_snapshot) {
--- 136,140 ----
if (type > 0) {
struct tab *tab = new_modetab(win, type);
! int error_ctx = error_new_context("", pw->win);
if (tab->vtab && tab->vtab->restore_snapshot) {
|