Comments.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27279 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2008-11-05 19:15:09 +00:00
parent c94d0da408
commit 3a9a0fc3e6

View 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;
}
}