de-indent

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19947 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-08-31 13:46:19 +00:00
parent 795d4ba423
commit bf728ca386

View File

@ -92,14 +92,17 @@ bool ModuleList::load() {
default: default:
string const modName = lex.getString(); string const modName = lex.getString();
LYXERR(Debug::TCLASS) << "Module name: " << modName << endl; LYXERR(Debug::TCLASS) << "Module name: " << modName << endl;
if (lex.next()) { if (!lex.next())
break;
string const fname = lex.getString(); string const fname = lex.getString();
LYXERR(Debug::TCLASS) << "Filename: " << fname << endl; LYXERR(Debug::TCLASS) << "Filename: " << fname << endl;
if (lex.next()) { if (!lex.next())
break;
string const desc = lex.getString(); string const desc = lex.getString();
LYXERR(Debug::TCLASS) << "Description: " << desc << endl; LYXERR(Debug::TCLASS) << "Description: " << desc << endl;
//FIXME Add packages //FIXME Add packages
if (lex.next()) { if (!lex.next())
break;
string packages = lex.getString(); string packages = lex.getString();
LYXERR(Debug::TCLASS) << "Packages: " << packages << endl; LYXERR(Debug::TCLASS) << "Packages: " << packages << endl;
vector<string> pkgs; vector<string> pkgs;
@ -111,9 +114,6 @@ bool ModuleList::load() {
// This code is run when we have // This code is run when we have
// modName, fname, desc, and pkgs // modName, fname, desc, and pkgs
addLayoutModule(modName, fname, desc, pkgs); addLayoutModule(modName, fname, desc, pkgs);
}
}
}
} // end switch } // end switch
} //end while } //end while