]> git.lyx.org Git - lyx.git/commitdiff
readded POTFILES.in it is needed by some of the make clean targets. fixed init order...
authorLars Gullik Bjønnes <larsbj@gullik.org>
Mon, 25 Oct 1999 21:51:41 +0000 (21:51 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Mon, 25 Oct 1999 21:51:41 +0000 (21:51 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@246 a592a061-630c-0410-9148-cb99ea01b6c8

ChangeLog
Makefile.am
po/.cvsignore
po/ChangeLog
po/POTFILES.in [new file with mode: 0644]
src/BackStack.h

index aa0a64bf7a767aec5c68795d4563aadbfd0ebf3c..792093f33c7b24f719f6d64d2c953c8be7ed0da2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 31a18b010a64bed1a07bb6a277fb41671f899f5c..8f881c20390f0c66bd037123bc1723018df33b5a 100644 (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 \
index b04a2fc1dadfc752ccccfd91607d757cfee08f58..4b005af788a477ee96c80b8d1068606071952ecd 100644 (file)
@@ -1,7 +1,6 @@
 Makefile
 Makefile.in
 POTFILES
-POTFILES.in
 *.gmo
 *.mo
 cat-id-tbl.c
index 448732a59435f45545f365566576f78927fde878..02c2cfa6ba19d1ea997a63dc55aadfcb2e581f70 100644 (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
diff --git a/po/POTFILES.in b/po/POTFILES.in
new file mode 100644 (file)
index 0000000..8898f1f
--- /dev/null
@@ -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
index fa21491cdf55c8124950bf5c99c0edb4584760ae..5ca40451a3cb009f7bcaa6a8091ccb85a648d6ac 100644 (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;