From: Jean-Marc Lasgouttes Date: Fri, 6 Apr 2001 12:35:59 +0000 (+0000) Subject: add language.h to lyx_main.C X-Git-Tag: 1.6.10~21325 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=a3a1d06f723e7412d92a5b3fbee0ac944934d6ef;p=features.git add language.h to lyx_main.C git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1904 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/po/POTFILES.in b/po/POTFILES.in index d231458f18..f94c783564 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -33,6 +33,7 @@ src/frontends/gnome/FormRef.C src/frontends/gnome/FormToc.C src/frontends/gnome/Menubar_pimpl.C src/frontends/kde/citationdlg.C +src/frontends/kde/dlg/citationdlgdata.C src/frontends/kde/dlg/copyrightdlgdata.C src/frontends/kde/dlg/docdlgdata.C src/frontends/kde/dlg/docextradlgdata.C diff --git a/src/ChangeLog b/src/ChangeLog index e773da2367..3bccc6c6ec 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2001-04-06 Jean-Marc Lasgouttes + + * lyx_main.C: include language.h + + * Makefile.am (lyx_main.o): add language.h + 2001-04-05 Jean-Marc Lasgouttes * exporter.C: diff --git a/src/Makefile.am b/src/Makefile.am index a95e291520..4396a9b7a0 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -213,7 +213,7 @@ lyx_SOURCES = \ lyx_main.o: lyx_main.C lyx_main.h config.h version.h lyx_gui.h \ lyx_gui_misc.h lyxrc.h support/path.h support/filetools.h \ bufferlist.h debug.h support/FileInfo.h lastfiles.h intl.h \ - lyxserver.h layout.h gettext.h kbmap.h commandtags.h + lyxserver.h layout.h gettext.h kbmap.h commandtags.h language.h $(CXXCOMPILE) -DLYX_DIR=\"$(pkgdatadir)\" \ -DTOP_SRCDIR=\"$(top_srcdir)\" -c $(top_srcdir)/src/lyx_main.C diff --git a/src/lyx_main.C b/src/lyx_main.C index 6d7a1d4780..e0bd0a65de 100644 --- a/src/lyx_main.C +++ b/src/lyx_main.C @@ -40,6 +40,7 @@ #include "lyxlex.h" #include "encoding.h" #include "converter.h" +#include "language.h" using std::endl;