diff --git a/src/ChangeLog b/src/ChangeLog index 727ae6d486..65056036f8 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2001-04-06 Jean-Marc Lasgouttes + + * lyx_main.h: + * lyx_main.C (ReadLanguagesFile): fix weird typo in method name + 2001-04-06 Lars Gullik Bjønnes * tabular.[Ch] (getLabelList): implement new method diff --git a/src/lyx_main.C b/src/lyx_main.C index e0bd0a65de..17b1ea260f 100644 --- a/src/lyx_main.C +++ b/src/lyx_main.C @@ -417,7 +417,7 @@ void LyX::init(int */*argc*/, char **argv, bool gui) // Read encodings ReadEncodingsFile("encodings"); // Read languages - ReadLangugesFile("languages"); + ReadLanguagesFile("languages"); // Load the layouts lyxerr[Debug::INIT] << "Reading layouts..." << endl; @@ -663,7 +663,7 @@ void LyX::ReadUIFile(string const & name) // Read the languages file `name' -void LyX::ReadLangugesFile(string const & name) +void LyX::ReadLanguagesFile(string const & name) { lyxerr[Debug::INIT] << "About to read " << name << "..." << endl; diff --git a/src/lyx_main.h b/src/lyx_main.h index e6e1a1e01c..5445d944d8 100644 --- a/src/lyx_main.h +++ b/src/lyx_main.h @@ -75,7 +75,7 @@ private: /// Read the ui file `name' void ReadUIFile(string const & name); /// Read the languages file `name' - void ReadLangugesFile(string const & name); + void ReadLanguagesFile(string const & name); /// Read the encodings file `name' void ReadEncodingsFile(string const & name); ///