Rename a routine.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28559 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-02-19 17:24:37 +00:00
parent 072ed23ffc
commit 00f5adcfe3
3 changed files with 3 additions and 3 deletions

View File

@ -732,7 +732,7 @@ bool LyX::init()
if (!LyXSetStyle())
return false;
//...and the modules
moduleList.load();
moduleList.read();
// read keymap and ui files in batch mode as well
// because InsetInfo needs to know these to produce

View File

@ -112,7 +112,7 @@ public:
//Much of this is borrowed from LayoutFileList::read()
bool ModuleList::load()
bool ModuleList::read()
{
FileName const real_file = libFileSearch("", "lyxmodules.lst");
LYXERR(Debug::TCLASS, "Reading modules from `" << real_file << '\'');

View File

@ -111,7 +111,7 @@ public:
///
ModuleList() {}
/// reads the modules from a file generated by configure.py
bool load();
bool read();
///
LyXModuleList::const_iterator begin() const;
///