]> git.lyx.org Git - features.git/commitdiff
Comments.
authorRichard Heck <rgheck@comcast.net>
Wed, 5 Nov 2008 19:15:09 +0000 (19:15 +0000)
committerRichard Heck <rgheck@comcast.net>
Wed, 5 Nov 2008 19:15:09 +0000 (19:15 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27279 a592a061-630c-0410-9148-cb99ea01b6c8

src/BufferParams.cpp

index 875c3c5fb0200aac1a904c5949b92f534564f2df..f1d009279de4c0a70a40f9e06cfd5f4e0034aca0 100644 (file)
@@ -1564,7 +1564,7 @@ bool BufferParams::checkModuleConsistency() {
                        LYXERR0("WARNING: Module " << modname << " should already have been dropped!");
                        continue;
                }
-
+               // FIXME This test can probably also be dropped, for the same reason.
                // determine whether some provided module excludes us or we exclude it
                list<string>::const_iterator pit = provmods.begin();
                list<string>::const_iterator pen = provmods.end();
@@ -1572,8 +1572,7 @@ bool BufferParams::checkModuleConsistency() {
                for (; !excluded && pit != pen; ++pit) {
                        if (!LyXModule::areCompatible(modname, *pit)) {
                                consistent = false;
-                               LYXERR0("Module " << modname << 
-                                               " dropped becuase it conflicts with provided module " << *pit);
+                               LYXERR0("WARNING: Module " << modname << " should already have been dropped!");
                                excluded = true;
                        }
                }