]> git.lyx.org Git - lyx.git/blobdiff - src/MenuBackend.C
better latin3&4 support
[lyx.git] / src / MenuBackend.C
index 7a411e6009e1de71dd82e39aee2af354caee810b..2525758134db97639d67da6bc4a9f52f2462dfe9 100644 (file)
@@ -141,16 +141,16 @@ Menu & Menu::read(LyXLex & lex)
        bool quit = false;
        bool optional = false;
 
-       while (lex.IsOK() && !quit) {
+       while (lex.isOK() && !quit) {
                switch (lex.lex()) {
                case md_optitem:
                        optional = true;
                        // fallback to md_item
                case md_item: {
                        lex.next(true);
-                       string const name = _(lex.GetString());
+                       string const name = _(lex.getString());
                        lex.next(true);
-                       string const command = lex.GetString();
+                       string const command = lex.getString();
                        add(MenuItem(MenuItem::Command, name, 
                                     command, optional));
                        optional = false;
@@ -199,9 +199,9 @@ Menu & Menu::read(LyXLex & lex)
                        
                case md_submenu: {
                        lex.next(true);
-                       string mlabel = _(lex.GetString());
+                       string const mlabel = _(lex.getString());
                        lex.next(true);
-                       string mname = lex.GetString();
+                       string const mname = lex.getString();
                        add(MenuItem(MenuItem::Submenu, mlabel, mname));
                        break;
                }
@@ -366,8 +366,7 @@ void Menu::expand(Menu & tomenu, Buffer * buf) const
                                int const action =  lyxaction
                                        .getPseudoAction(LFUN_FLOAT_LIST,
                                                         cit->second.type());
-                               string label = _("List of ");
-                               label += cit->second.name();
+                               string const label = cit->second.name() + _(" List");
                                tomenu.add(MenuItem(MenuItem::Command,
                                                    label, action));
                        }
@@ -432,9 +431,10 @@ void MenuBackend::read(LyXLex & lex)
        };
 
        //consistency check
-       if (compare_no_case(lex.GetString(), "menuset"))
+       if (compare_no_case(lex.getString(), "menuset")) {
                lyxerr << "Menubackend::read: ERROR wrong token:`"
-                      << lex.GetString() << '\'' << endl;
+                      << lex.getString() << '\'' << endl;
+       }
 
        lex.pushTable(menutags, md_last - 1);
        if (lyxerr.debugging(Debug::PARSER))
@@ -443,14 +443,14 @@ void MenuBackend::read(LyXLex & lex)
        bool quit = false;
        bool menubar = false;
 
-       while (lex.IsOK() && !quit) {
+       while (lex.isOK() && !quit) {
                switch (lex.lex()) {
                case md_menubar: 
                        menubar = true;
                        // fallback to md_menu
                case md_menu: {
                        lex.next(true);
-                       string name = lex.GetString();
+                       string const name = lex.getString();
                        if (hasMenu(name)) {
                                if (getMenu(name).menubar() == menubar) {
                                        getMenu(name).read(lex);