mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
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:
parent
2bc240251e
commit
1375dcbeba
@ -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>
|
||||
|
||||
* lyxlex_pimpl.[Ch]: converto to lowercase funcs
|
||||
|
@ -632,7 +632,7 @@ void LyX::readUIFile(string const & name)
|
||||
<< " in " << ui_path << endl;
|
||||
LyXLex lex(uitags, ui_last - 1);
|
||||
lex.setFile(ui_path);
|
||||
if (!lex.IsOK()) {
|
||||
if (!lex.isOK()) {
|
||||
lyxerr << "Unable to set LyXLeX for ui file: " << ui_path
|
||||
<< endl;
|
||||
}
|
||||
@ -640,7 +640,7 @@ void LyX::readUIFile(string const & name)
|
||||
if (lyxerr.debugging(Debug::PARSER))
|
||||
lex.printTable(lyxerr);
|
||||
|
||||
while (lex.IsOK()) {
|
||||
while (lex.isOK()) {
|
||||
switch (lex.lex()) {
|
||||
case ui_menuset:
|
||||
menubackend.read(lex);
|
||||
@ -651,7 +651,7 @@ void LyX::readUIFile(string const & name)
|
||||
break;
|
||||
|
||||
default:
|
||||
if(!strip(lex.GetString()).empty())
|
||||
if(!strip(lex.getString()).empty())
|
||||
lex.printError("LyX::ReadUIFile: "
|
||||
"Unknown menu tag: `$$Token'");
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user