mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-22 16:37:28 +00:00
Revert last changes.
I had a default.ui file in ~/.lyx that was being complained about... git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8688 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
affa34ce2d
commit
60c6212be4
@ -1,8 +1,3 @@
|
||||
2004-04-21 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* ToolbarBackend.C (readToolbars): use compare_ascii_no_case
|
||||
one more time.
|
||||
|
||||
2004-04-21 John Levon <levon@movementarian.org>
|
||||
|
||||
* ToolbarBackend.h:
|
||||
|
@ -155,7 +155,7 @@ void ToolbarBackend::readToolbars(LyXLex & lex)
|
||||
Toolbars::iterator tcit = toolbars.begin();
|
||||
Toolbars::iterator tend = toolbars.end();
|
||||
for (; tcit != tend; ++tcit) {
|
||||
if (compare_ascii_no_case(name, tcit->name) == 0)
|
||||
if (tcit->name == name)
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user