diff --git a/ChangeLog b/ChangeLog index aa0a64bf7a..792093f33c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 1999-10-25 Lars Gullik Bjønnes + * src/BackStack.h: fixed initialization order in constructor + + * Makefile.am (MAINTAINERCLEANFILES): removed po/POTFILES.in + * acinclude.m4 (VERSION): new rules for when a version is development, added also a variable for prerelease. (warnings): we set with_warnings=yes for prereleases diff --git a/Makefile.am b/Makefile.am index 31a18b010a..8f881c2039 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,7 @@ AUTOMAKE_OPTIONS = foreign DISTCLEANFILES= *.orig *.rej *~ *.bak lyx.1 core MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure \ - development/lyx.spec po/POTFILES.in + development/lyx.spec SUBDIRS = intl po src lib EXTRA_DIST = ANNOUNCE CHANGES INSTALL.OS2 INSTALL.autoconf README.OS2 \ diff --git a/po/.cvsignore b/po/.cvsignore index b04a2fc1da..4b005af788 100644 --- a/po/.cvsignore +++ b/po/.cvsignore @@ -1,7 +1,6 @@ Makefile Makefile.in POTFILES -POTFILES.in *.gmo *.mo cat-id-tbl.c diff --git a/po/ChangeLog b/po/ChangeLog index 448732a594..02c2cfa6ba 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,9 @@ +1999-10-25 Lars Gullik Bjønnes + + * redadded POTFILES.in some of the clean targest need it + + * removed POTFILES.in from .cvsignore + 1999-10-23 Lars Gullik Bjønnes * .cvsignore: added POTFILES.in diff --git a/po/POTFILES.in b/po/POTFILES.in new file mode 100644 index 0000000000..8898f1f68f --- /dev/null +++ b/po/POTFILES.in @@ -0,0 +1,83 @@ +# +# This file is automatically generated by autogen.sh. This command was +# used to extract the files from the sources: +# +# grep -E "_\(\".*\"\)" `find src -name \*.[hHC]` | \ +# awk 'BEGIN {FS= ":"} {print }' | sort | uniq +# +# This must be done when standing in lyx/ +# +# This is all the files that contains internationalization strings. + +src/BufferView.C +src/Chktex.C +src/FontLoader.C +src/LaTeX.C +src/LaTeXLog.C +src/Literate.C +src/LyXAction.C +src/LyXSendto.C +src/LyXView.C +src/PaperLayout.C +src/ParagraphExtra.C +src/TableLayout.C +src/buffer.C +src/bufferlist.C +src/bullet_forms.C +src/bullet_forms_cb.C +src/combox.C +src/credits.C +src/credits_form.C +src/filedlg.C +src/form1.C +src/gettext.h +src/insets/figinset.C +src/insets/form_url.C +src/insets/insetbib.C +src/insets/inseterror.C +src/insets/inseterror.h +src/insets/insetinclude.C +src/insets/insetindex.C +src/insets/insetinfo.C +src/insets/insetloa.h +src/insets/insetlof.h +src/insets/insetlot.h +src/insets/insetparent.h +src/insets/insetref.C +src/insets/insettoc.h +src/insets/inseturl.C +src/insets/lyxinset.h +src/intl.C +src/kbmap.C +src/latexoptions.C +src/layout.C +src/layout_forms.C +src/lyx.C +src/lyx_cb.C +src/lyx_gui.C +src/lyx_gui_misc.C +src/lyx_main.C +src/lyx_sendfax.C +src/lyx_sendfax_main.C +src/lyxfont.C +src/lyxfr0.C +src/lyxfr1.C +src/lyxfunc.C +src/lyxvc.C +src/mathed/formula.C +src/mathed/formula.h +src/mathed/formulamacro.C +src/mathed/math_forms.C +src/mathed/math_panel.C +src/menus.C +src/minibuffer.C +src/minibuffer.h +src/paragraph.C +src/print_form.C +src/sp_form.C +src/spellchecker.C +src/support/filetools.C +src/support/lyxlib.h +src/support/path.h +src/text.C +src/text2.C diff --git a/src/BackStack.h b/src/BackStack.h index fa21491cdf..5ca40451a3 100644 --- a/src/BackStack.h +++ b/src/BackStack.h @@ -33,7 +33,7 @@ public: int y; }; /// - BackStack(int n) : item(new BackStackItem[n]) , imax(n), i(0) {} + BackStack(int n) : item(new BackStackItem[n]) , i(0), imax(n) {} /// ~BackStack() { delete[] item;