]> git.lyx.org Git - features.git/commitdiff
Revert last changes.
authorAngus Leeming <leeming@lyx.org>
Wed, 21 Apr 2004 12:14:14 +0000 (12:14 +0000)
committerAngus Leeming <leeming@lyx.org>
Wed, 21 Apr 2004 12:14:14 +0000 (12:14 +0000)
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

src/ChangeLog
src/ToolbarBackend.C

index 5ee99c43619f8ad4bf4732ff931d85e5213755a9..48cfe8b025ae1c4c7e4b5c246b7ed29ea90d26d5 100644 (file)
@@ -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:
index 647586b1f77724930a47788b05fe5e6280364be5..41338d58c2bd537ced81e4cc76a078626f6d7e16 100644 (file)
@@ -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;
                }