fixed some forgotten lowercase

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2435 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Vigna 2001-08-07 07:36:56 +00:00
parent 2bc240251e
commit 1375dcbeba
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2001-08-07 Juergen Vigna <jug@sad.it>
* lyx_main.C (readUIFile): fixed some forgotten lowercase!
2001-08-06 Lars Gullik Bjønnes <larsbj@birdstep.com> 2001-08-06 Lars Gullik Bjønnes <larsbj@birdstep.com>
* lyxlex_pimpl.[Ch]: converto to lowercase funcs * lyxlex_pimpl.[Ch]: converto to lowercase funcs

View File

@ -632,7 +632,7 @@ void LyX::readUIFile(string const & name)
<< " in " << ui_path << endl; << " in " << ui_path << endl;
LyXLex lex(uitags, ui_last - 1); LyXLex lex(uitags, ui_last - 1);
lex.setFile(ui_path); lex.setFile(ui_path);
if (!lex.IsOK()) { if (!lex.isOK()) {
lyxerr << "Unable to set LyXLeX for ui file: " << ui_path lyxerr << "Unable to set LyXLeX for ui file: " << ui_path
<< endl; << endl;
} }
@ -640,7 +640,7 @@ void LyX::readUIFile(string const & name)
if (lyxerr.debugging(Debug::PARSER)) if (lyxerr.debugging(Debug::PARSER))
lex.printTable(lyxerr); lex.printTable(lyxerr);
while (lex.IsOK()) { while (lex.isOK()) {
switch (lex.lex()) { switch (lex.lex()) {
case ui_menuset: case ui_menuset:
menubackend.read(lex); menubackend.read(lex);
@ -651,7 +651,7 @@ void LyX::readUIFile(string const & name)
break; break;
default: default:
if(!strip(lex.GetString()).empty()) if(!strip(lex.getString()).empty())
lex.printError("LyX::ReadUIFile: " lex.printError("LyX::ReadUIFile: "
"Unknown menu tag: `$$Token'"); "Unknown menu tag: `$$Token'");
break; break;