]> git.lyx.org Git - lyx.git/blobdiff - src/Text3.cpp
* InsetListings.cpp:
[lyx.git] / src / Text3.cpp
index e9c08f403e12b08cd30c051fed0395cab7ab39fb..e5a1814b0e5cc8300698d59ad4ee605cec33ad95 100644 (file)
@@ -1570,7 +1570,7 @@ void Text::dispatch(Cursor & cur, FuncRequest & cmd)
        case LFUN_ERT_INSERT:
        case LFUN_LISTING_INSERT:
        case LFUN_MARGINALNOTE_INSERT:
-       case LFUN_OPTIONAL_INSERT:
+       case LFUN_ARGUMENT_INSERT:
        case LFUN_INDEX_INSERT:
        case LFUN_PREVIEW_INSERT:
                // Open the inset, and move the current selection
@@ -2341,11 +2341,11 @@ bool Text::getStatus(Cursor & cur, FuncRequest const & cmd,
        case LFUN_INFO_INSERT:
                code = INFO_CODE;
                break;
-       case LFUN_OPTIONAL_INSERT: {
-               code = OPTARG_CODE;
+       case LFUN_ARGUMENT_INSERT: {
+               code = ARG_CODE;
                Layout const & lay = cur.paragraph().layout();
                int const numargs = lay.reqargs + lay.optargs;
-               enable = cur.paragraph().insetList().count(OPTARG_CODE) < numargs;
+               enable = cur.paragraph().insetList().count(ARG_CODE) < numargs;
                break;
        }
        case LFUN_INDEX_INSERT: