readded POTFILES.in it is needed by some of the make clean targets. fixed init order in a constructor

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@246 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 1999-10-25 21:51:41 +00:00
parent 4ea178132c
commit 0e2fed29ea
6 changed files with 95 additions and 3 deletions

View File

@ -1,5 +1,9 @@
1999-10-25 Lars Gullik Bjønnes <larsbj@lyx.org>
* 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

View File

@ -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 \

View File

@ -1,7 +1,6 @@
Makefile
Makefile.in
POTFILES
POTFILES.in
*.gmo
*.mo
cat-id-tbl.c

View File

@ -1,3 +1,9 @@
1999-10-25 Lars Gullik Bjønnes <larsbj@lyx.org>
* redadded POTFILES.in some of the clean targest need it
* removed POTFILES.in from .cvsignore
1999-10-23 Lars Gullik Bjønnes <larsbj@localhost.localdomain>
* .cvsignore: added POTFILES.in

83
po/POTFILES.in Normal file
View File

@ -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

View File

@ -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;