]> git.lyx.org Git - features.git/commitdiff
merge src/frontends/controllers/biblio, character, frnt_lang, helper_funcs and tex_he...
authorBo Peng <bpeng@lyx.org>
Wed, 25 Apr 2007 17:15:56 +0000 (17:15 +0000)
committerBo Peng <bpeng@lyx.org>
Wed, 25 Apr 2007 17:15:56 +0000 (17:15 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17996 a592a061-630c-0410-9148-cb99ea01b6c8

development/scons/scons_manifest.py
po/POTFILES.in
src/factory.C
src/frontends/controllers/Makefile.am
src/frontends/controllers/biblio.C
src/frontends/controllers/character.C
src/frontends/controllers/frnt_lang.C
src/frontends/controllers/helper_funcs.C
src/frontends/controllers/tests/biblio.C
src/frontends/controllers/tex_helpers.C
src/insets/InsetCommandParams.cpp

index 296598f5fcd1062254334fe67937ce283ccded43..fb3ff8ee84c4c197c521ea8f8de2dc6bd835fae8 100644 (file)
@@ -585,11 +585,7 @@ src_frontends_controllers_files = Split('''
     ControlWrap.C
     Dialog.C
     Kernel.C
-    biblio.C
-    character.C
-    frnt_lang.C
-    helper_funcs.C
-    tex_helpers.C
+    frontend_helpers.cpp
 ''')
 
 
index 5a52291cf77b656c6e9699d6fa84770ec1bb1cbb..fe4e71443817cd6ae4734939edac9e2c5532aa82 100644 (file)
@@ -30,11 +30,7 @@ src/frontends/controllers/ControlPrefs.C
 src/frontends/controllers/ControlPrint.C
 src/frontends/controllers/ControlSpellchecker.C
 src/frontends/controllers/ControlToc.C
-src/frontends/controllers/biblio.C
-src/frontends/controllers/character.C
-src/frontends/controllers/frnt_lang.C
-src/frontends/controllers/helper_funcs.C
-src/frontends/controllers/tex_helpers.C
+src/frontends/controllers/frontend_helpers.cpp
 src/frontends/qt4/Alert_pimpl.C
 src/frontends/qt4/BulletsModule.C
 src/frontends/qt4/Dialogs.C
index 318044c7507ec35b133e92080305f892ae1bbfa4..e9b32604ea59068302b42705dfdc79f5ae4cc6d5 100644 (file)
@@ -402,7 +402,7 @@ InsetBase * readInset(LyXLex & lex, Buffer const & buf)
                // the various \\footcite commands. We should increase the
                // file format number and read these commands here, too.
                // Then we should use is_possible_cite_command() in
-               // src/frontends/controllers/biblio.C to test for valid cite
+               // src/frontends/controllers/frontend_helpers.cpp to test for valid cite
                // commands.
                if (compare_ascii_no_case(cmdName.substr(0,4), "cite") == 0) {
                        inset.reset(new InsetCitation(inscmd));
index aecdeaabd88417e8b944712657a4285b6a571b45..a6bfd0904211e90664fc12d0d5951e28afc99211 100644 (file)
@@ -15,13 +15,9 @@ libcontrollers_la_SOURCES= \
        Dialog.h \
        Kernel.C \
        Kernel.h \
-       biblio.C \
        biblio.h \
-       character.C \
        character.h \
-       frnt_lang.C \
        frnt_lang.h \
-       tex_helpers.C \
        tex_helpers.h \
        BCView.h \
        BCView.C \
@@ -99,5 +95,5 @@ libcontrollers_la_SOURCES= \
        ControlVSpace.h \
        ControlWrap.C \
        ControlWrap.h \
-       helper_funcs.C \
+       frontend_helpers.cpp \
        helper_funcs.h
index 85bc4c8ca65f7ee501c2b751565c186c43dbb771..ee917f6a946411d48bf9a3f61a7e2c84060d21f8 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * \file biblio.C
+ * \file frontend_helpers.cpp
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
index d13387cf66046e49c36cadd522cd41b2f35142ad..ca5fa6d0120c29cdf6c40bb9bd1019905f537a8b 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * \file character.C
+ * \file frontend_helpers.cpp
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
index 1c3bee9ad7a5b2f7ff871353c167ff11743c12c8..ce48d0f8ad67725286bf34302498a555feb606ec 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * \file frnt_lang.C
+ * \file frontend_helpers.cpp
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
index 52806173ae2f21c0d17bfa483fbf45f7b2c8985a..20006707f1e1d1c683db3ed6e31005b166247111 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * \file helper_funcs.C
+ * \file frontend_helpers.cpp
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
index 3a51499ed6e4f8cb97001b2ba47fc0fc6f8674e9..6fe25a36b3555b03ce8b9726a492bb7756641c94 100644 (file)
@@ -13,7 +13,7 @@ using std::string;
 // Escape special chars.
 // All characters are literals except: '.|*?+(){}[]^$\'
 // These characters are literals when preceded by a "\", which is done here
-// This function is unfortunately copied from ../biblio.C, so we should
+// This function is unfortunately copied from ../frontend_helpers.cpp, so we should
 // try to make sure to keep the two in sync.
 string const escape_special_chars(string const & expr)
 {
@@ -35,7 +35,7 @@ typedef std::map<string, string> InfoMap;
 
 // A functor for use with std::find_if, used to ascertain whether a
 // data entry matches the required regex_
-// This class is unfortunately copied from ../biblio.C, so we should
+// This class is unfortunately copied from ../frontend_helpers.cpp, so we should
 // try to make sure to keep the two in sync.
 class RegexMatch : public std::unary_function<string, bool>
 {
index e00abbc05b24e4ac87ee2358603b70d15151edea..aba85a1d7a11c19ce57c3a978406bb4633b1384f 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * \file tex_helpers.C
+ * \file frontend_helpers.cpp
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
index 24f2de9112227e1027ed03999f9379d9982e1a71..d246d62bcab1f33f185e548da68281b558c6b757 100644 (file)
@@ -68,7 +68,7 @@ InsetCommandParams::findInfo(std::string const & name)
 
        // InsetCitation
        // FIXME: Use is_possible_cite_command() in
-       // src/frontends/controllers/biblio.C, see comment in src/factory.C.
+       // src/frontends/controllers/frontend_helpers.cpp, see comment in src/factory.C.
        if (name == "cite" || name == "citet" || name == "citep" || name == "citealt" ||
            name == "citealp" || name == "citeauthor" || name == "citeyear" ||
            name == "citeyearpar" || name == "citet*" || name == "citep*" ||