]> git.lyx.org Git - features.git/commitdiff
remove unnecessary includes
authorAndré Pönitz <poenitz@gmx.net>
Tue, 11 Sep 2007 21:43:55 +0000 (21:43 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Tue, 11 Sep 2007 21:43:55 +0000 (21:43 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20228 a592a061-630c-0410-9148-cb99ea01b6c8

src/BufferParams.h
src/LaTeXFeatures.cpp
src/factory.cpp
src/insets/InsetCommandParams.cpp

index 620b78e2a9aacf838dee6c243aef4607ed6a1222..4ded0b7cbfde4df47b6b1c7a3bb1d333a024b54f 100644 (file)
@@ -26,8 +26,6 @@
 #include "support/FileName.h"
 #include "support/types.h"
 
-#include "frontends/controllers/frontend_helpers.h"
-
 #include <vector>
 
 namespace lyx {
index 4fee7fdf1eb651bddfdc15f0fb788a506d3b93b4..a76cceda9ef9d5b9fe1128ef86d953f86b82368b 100644 (file)
@@ -29,8 +29,6 @@
 #include "support/docstream.h"
 #include "support/filetools.h"
 
-#include "frontends/controllers/frontend_helpers.h"
-
 using std::endl;
 using std::find;
 using std::string;
index 681b8e5fbc53b47bbbc74c167605483bdec2a7a1..cb5c15d36d60e7eab98351841824f548e6ae9d9b 100644 (file)
@@ -407,8 +407,7 @@ Inset * readInset(Lexer & 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/frontend_helpers.cpp to test for valid cite
-               // commands.
+               // InsetCitation to test for valid cite commands.
                if (compare_ascii_no_case(cmdName.substr(0,4), "cite") == 0) {
                        inset.reset(new InsetCitation(inscmd));
                } else if (cmdName == "bibitem") {
index 7c0807793c2dc0c55e86ee6be61a61b7fae77153..19a557077fdc3d6cb8224e208f5e410a50fa4ea5 100644 (file)
@@ -68,7 +68,7 @@ InsetCommandParams::findInfo(std::string const & name)
 
        // InsetCitation
        // FIXME: Use is_possible_cite_command() in
-       // src/frontends/controllers/frontend_helpers.cpp, see comment in src/factory.cpp.
+       // InsetCitation, see comment in src/factory.cpp.
        if (name == "cite" || name == "citet" || name == "citep" || name == "citealt" ||
            name == "citealp" || name == "citeauthor" || name == "citeyear" ||
            name == "citeyearpar" || name == "citet*" || name == "citep*" ||